Skip to content

Commit ff3c79b

Browse files
author
James Halliday
committed
another only test, passes
1 parent 40cad7d commit ff3c79b

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

test/only3.js

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
var test = require('../');
2+
3+
test('only3 test 1', function (t) {
4+
t.fail('not 1');
5+
t.end();
6+
});
7+
8+
test.only('only3 test 2', function (t) {
9+
t.end();
10+
});
11+
12+
test('only3 test 3', function (t) {
13+
t.fail('not 3');
14+
t.end();
15+
});

0 commit comments

Comments
 (0)