Created
December 8, 2017 13:49
-
-
Save vitalets/db55205a69a3212cbe0df29d83e2faec to your computer and use it in GitHub Desktop.
ES5 sum.test.js
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('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