mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-18 23:38:31 +02:00
committed by
Kumar McMillan
parent
01181a350b
commit
395786e353
8
mocha-client-tests/addon/tests/lib/test.array.js
Normal file
8
mocha-client-tests/addon/tests/lib/test.array.js
Normal file
@@ -0,0 +1,8 @@
|
||||
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);
|
||||
});
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user