summaryrefslogtreecommitdiff
path: root/app/models/character/character.test.ts
blob: 2f330b4d6066d77c8a1cba350a959896b744fd1f (about) (plain)
1
2
3
4
5
6
7
8
9
10
import { CharacterModel } from "./character"

test("can be created", () => {
  const instance = CharacterModel.create({
    id: 1,
    name: "Rick Sanchez",
  })

  expect(instance).toBeTruthy()
})