added missing semicolons

This commit is contained in:
jeremy avnet
2013-01-14 16:51:04 -08:00
parent 0563215e8f
commit b53f6ce071

View File

@@ -2,12 +2,12 @@
// more docs on writing tests with mocha can be found here:
// http://visionmedia.github.com/mocha/
var assert = require("assert")
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(5));
assert.equal(-1, [1,2,3].indexOf(0));
})
})
})
});
});
});