summaryrefslogtreecommitdiff
path: root/app_expo/models/character/character.test.ts
blob: d7bfac7eaca188c6fabc709f747c826ac6648b28 (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()
})