Created
December 8, 2017 13:49
ES5 sum.test.js
This file contains 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