mirror of
https://github.com/outline/outline.git
synced 2026-05-07 10:33:05 -05:00
04c3d81b1f
* 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");
|
|
});
|
|
});
|