Skip to content

Instantly share code, notes, and snippets.

@zoo-of-red-and-blue
Created July 30, 2014 06:52
Show Gist options
  • Save zoo-of-red-and-blue/56d34d73f4c77564ac76 to your computer and use it in GitHub Desktop.
Save zoo-of-red-and-blue/56d34d73f4c77564ac76 to your computer and use it in GitHub Desktop.
Mocha Sample
describe('Array', function(){
before(function(){
// ...
});
describe('#indexOf()', function(){
it('should return -1 when not present', function(){
[1,2,3].indexOf(4).should.equal(-1);
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment