Skip to content

Commit 9f0e646

Browse files
committed
test
1 parent db67574 commit 9f0e646

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

Makefile

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
test:
2+
mocha
3+
4+
.PHONY: test

test/sample.js

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
var assert = require("assert")
2+
describe('Array', function(){
3+
describe('#indexOf()', function(){
4+
it('should return -1 when the value is not present', function(){
5+
assert.equal(-1, [1,2,3].indexOf(5));
6+
assert.equal(-1, [1,2,3].indexOf(0));
7+
})
8+
})
9+
})

0 commit comments

Comments
 (0)