mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-28 19:27:44 +00:00
7 lines
201 B
JavaScript
7 lines
201 B
JavaScript
describe('Array', function() {
|
|
describe('#indexOf()', function() {
|
|
it('should return -1 when the value is not present', function() {
|
|
assert.equal([1,2,3].indexOf(4), -1);
|
|
});
|
|
});
|
|
});
|