Created
July 30, 2014 06:52
-
-
Save zoo-of-red-and-blue/56d34d73f4c77564ac76 to your computer and use it in GitHub Desktop.
Mocha Sample
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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