mirror of
https://github.com/keymanapp/keyman.git
synced 2026-09-10 09:37:42 +00:00
8 lines
233 B
JavaScript
8 lines
233 B
JavaScript
var assert = require('assert');
|
|
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);
|
|
});
|
|
});
|
|
});
|