Skip to content

Instantly share code, notes, and snippets.

@kossnocorp
Created July 23, 2014 16:40
Show Gist options
  • Save kossnocorp/fb0350440e3dfdba64c0 to your computer and use it in GitHub Desktop.
Save kossnocorp/fb0350440e3dfdba64c0 to your computer and use it in GitHub Desktop.
describe('true', function() {
it('must be true', function() {
expect(true).to.be.true;
});
it('must not be true', function() {
expect(true).to.not.be.false;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment