We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a51e872 commit a3d85bbCopy full SHA for a3d85bb
example/throw.js
@@ -0,0 +1,10 @@
1
+var falafel = require('falafel');
2
+var test = require('../');
3
+
4
+test('throw', function (t) {
5
+ t.plan(2);
6
7
+ setTimeout(function () {
8
+ throw new Error('doom');
9
+ }, 100);
10
+});
package.json
@@ -1,6 +1,6 @@
{
"name" : "tape",
- "version" : "1.0.3",
+ "version" : "1.0.4",
"description" : "tap-producing test harness for node and browsers",
"main" : "index.js",
"bin" : "./bin/tape",
0 commit comments