mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-18 07:18:34 +02:00
8 lines
262 B
JavaScript
8 lines
262 B
JavaScript
describe('Array', function() {
|
|
describe('#indexOf()', function() {
|
|
it('should return -1 when the value is not present', function() {
|
|
expect([1,2,3]).to.not.contain(5);
|
|
expect([1,2,3]).to.not.contain(0);
|
|
});
|
|
});
|
|
}); |