Skip to content

Commit

Permalink
chore: fix assertion test
Browse files Browse the repository at this point in the history
  • Loading branch information
sheremet-va committed Feb 9, 2022
1 parent 273e448 commit cb7695c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/core/test/basic.test.ts
Expand Up @@ -27,8 +27,8 @@ test('JSON', () => {

test('assertion is callable', () => {
const str = '13'
expect(str).to.be('13')
expect(str).not.to.be('12')
expect(str).to.be.a('string')
expect(str).not.to.be.a('number')
})

const hi = suite('suite')
Expand Down

0 comments on commit cb7695c

Please sign in to comment.