Skip to content

Commit

Permalink
feat: improve tests
Browse files Browse the repository at this point in the history
  • Loading branch information
emmanuelm41 committed Aug 16, 2024
1 parent 8788e55 commit 1ffcae4
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests_zemu/tests/standard.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,16 @@ describe('Standard', function () {

expect(resp.return_code).toEqual(0x9000)
expect(resp.error_message).toEqual('No errors')

expect(resp).toHaveProperty('test_mode')

expect(resp).toHaveProperty('major')
expect(resp).toHaveProperty('minor')
expect(resp).toHaveProperty('patch')

expect(resp.major).toEqual(104)
expect(resp.minor).toEqual(63001)
expect(resp.patch).toEqual(0)
} finally {
await sim.close()
}
Expand Down

0 comments on commit 1ffcae4

Please sign in to comment.