summaryrefslogtreecommitdiff
path: root/app/models/character-store/character-store.test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/character-store/character-store.test.ts')
-rw-r--r--app/models/character-store/character-store.test.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/app/models/character-store/character-store.test.ts b/app/models/character-store/character-store.test.ts
new file mode 100644
index 0000000..6d82079
--- /dev/null
+++ b/app/models/character-store/character-store.test.ts
@@ -0,0 +1,7 @@
+import { CharacterStoreModel } from "./character-store"
+
+test("can be created", () => {
+ const instance = CharacterStoreModel.create({})
+
+ expect(instance).toBeTruthy()
+})