Created
December 31, 2015 05:43
-
-
Save jamestalmage/ae4b2790fef88a7d0642 to your computer and use it in GitHub Desktop.
Tap Repro
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
TAP version 13 | |
# Subtest: (unnamed test) | |
1..1 | |
ok 1 - should be equal | |
ok 1 - (unnamed test) # time=10.216ms | |
1..1 | |
# time=36.141ms |
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
var tap = require('tap'); | |
tap.test(function (t) { | |
t.plan(1); | |
try { | |
t.is(1, 1); | |
t.is(2, 2); | |
} catch (e) { | |
// noop | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Tap Version 4.0.0