Files
outline/app/models/Collection.test.ts
T
Hemachandar 04c3d81b1f chore: Setup missing oxlint configs (#9862)
* shared

* server

* app

* remove vestigial eslintrc files

* update comment directives
2025-08-06 19:54:22 -04:00

13 lines
295 B
TypeScript

/* oxlint-disable */
import stores from "~/stores";
describe("Collection model", () => {
test("should initialize with data", () => {
const collection = stores.collections.add({
id: "123",
name: "Engineering",
});
expect(collection.name).toBe("Engineering");
});
});