Skip to content

Commit

Permalink
another only test, passes
Browse files Browse the repository at this point in the history
  • Loading branch information
James Halliday committed Mar 5, 2014
1 parent 40cad7d commit ff3c79b
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions test/only3.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
var test = require('../');

test('only3 test 1', function (t) {
t.fail('not 1');
t.end();
});

test.only('only3 test 2', function (t) {
t.end();
});

test('only3 test 3', function (t) {
t.fail('not 3');
t.end();
});

0 comments on commit ff3c79b

Please sign in to comment.