Skip to content

Instantly share code, notes, and snippets.

@vitalets
Last active December 4, 2017 17:16
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 vitalets/e7f3b4f1de45aa3eade998c3c30b4383 to your computer and use it in GitHub Desktop.
Save vitalets/e7f3b4f1de45aa3eade998c3c30b4383 to your computer and use it in GitHub Desktop.
import sum from './sum.js';
describe('sum', function () {
it('should return sum of arguments', function () {
chai.expect(sum(1, 2)).to.equal(3);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment