tweaks and trying to add a command

This commit is contained in:
Dalton
2018-12-05 19:10:58 -08:00
parent a56fa324f9
commit ceb5b65506
4 changed files with 72 additions and 50 deletions

9
test.js Normal file
View File

@@ -0,0 +1,9 @@
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));
});
});
});