Skip to content

Instantly share code, notes, and snippets.

@dalmaer
Created December 19, 2011 00:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dalmaer/1494903 to your computer and use it in GitHub Desktop.
Save dalmaer/1494903 to your computer and use it in GitHub Desktop.
describe('test suite', function () {
it('should expose a function', function () {
expect(add).to.be.a('function');
});
it('should do math', function () {
expect(add(1, 3)).to.equal(4);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment