spiegel-keyman/common/predictive-text/unit_tests/in_browser/cases/basic.js
2018-11-12 09:34:13 +07:00

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);
});
});
});