Skip to content

Instantly share code, notes, and snippets.

@jamestalmage
Created December 31, 2015 05:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jamestalmage/ae4b2790fef88a7d0642 to your computer and use it in GitHub Desktop.
Save jamestalmage/ae4b2790fef88a7d0642 to your computer and use it in GitHub Desktop.
Tap Repro
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
var tap = require('tap');
tap.test(function (t) {
t.plan(1);
try {
t.is(1, 1);
t.is(2, 2);
} catch (e) {
// noop
}
});
@jamestalmage
Copy link
Author

Tap Version 4.0.0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment