Skip to content

Commit a3d85bb

Browse files
author
James Halliday
committed
1.0.4
1 parent a51e872 commit a3d85bb

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

example/throw.js

+10
Original file line numberDiff line numberDiff line change
@@ -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-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name" : "tape",
3-
"version" : "1.0.3",
3+
"version" : "1.0.4",
44
"description" : "tap-producing test harness for node and browsers",
55
"main" : "index.js",
66
"bin" : "./bin/tape",

0 commit comments

Comments
 (0)