Skip to content

Instantly share code, notes, and snippets.

@khaosdoctor
Created July 12, 2017 02:39
Show Gist options
  • Save khaosdoctor/b04342da0417ef98339a6248dfcfb833 to your computer and use it in GitHub Desktop.
Save khaosdoctor/b04342da0417ef98339a6248dfcfb833 to your computer and use it in GitHub Desktop.
Mocha test description
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));
});
});
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment