mirror of
https://github.com/outline/outline.git
synced 2026-08-03 13:27:25 +03:00
* shared * server * app * remove vestigial eslintrc files * update comment directives
13 lines
295 B
TypeScript
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");
|
|
});
|
|
});
|