Last active
March 15, 2017 07:03
-
-
Save MattMcFarland/8f6b84f08808d9ef230e411ce7d751e4 to your computer and use it in GitHub Desktop.
js verify with tape
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
test('addition is commutative', (t) => { | |
t.plan(1) | |
t.equal(jsc.checkForall(jsc.integer, jsc.integer, (a, b) => a + b === b + a), true) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment