eltro/test/test.mjs

10 lines
253 B
JavaScript
Raw Normal View History

2020-03-31 17:27:36 +00:00
import { Casette as c, assert} from '../index.mjs'
c.describe('Array', function() {
c.describe('#indexOf()', function() {
c.test('should return -1 when value is not present', function() {
assert.equal([1,2,3].indexOf(4), -1)
})
})
})