Files
discord-bot-js/test.js
2018-12-05 19:10:58 -08:00

9 lines
250 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, [1,2,3].indexOf(4));
});
});
});