Files
node-test/test/test.js

9 lines
233 B
JavaScript
Raw Permalink Normal View History

2022-12-22 01:32:13 +02:00
var assert = require('assert');
describe('Array', function() {
describe('#indexOf()', function() {
it('should return -1 when the value is not present', function() {
assert.equal(-1, [1,2,3].indexOf(4));
});
});
});