Created
December 26, 2016 04:56
-
-
Save mattcollier/2b6899b459443e485772095ab3cd7db0 to your computer and use it in GitHub Desktop.
a description
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
function f(x) {return x + 2;} |
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
it('should do the right thing', () => { | |
assert.equal(f(4), 6); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment