Skip to content

Commit f9aa185

Browse files
ljharbJames Halliday
authored and
James Halliday
committed
Adding Test.skip.
1 parent 88e296f commit f9aa185

File tree

4 files changed

+23
-0
lines changed

4 files changed

+23
-0
lines changed

index.js

+1
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ function createExitHarness (conf) {
9898
exports.createHarness = createHarness;
9999
exports.Test = Test;
100100
exports.test = exports; // tap compat
101+
exports.test.skip = Test.skip;
101102

102103
var exitInterval;
103104

lib/test.js

+6
Original file line numberDiff line numberDiff line change
@@ -454,4 +454,10 @@ function has (obj, prop) {
454454
return Object.prototype.hasOwnProperty.call(obj, prop);
455455
}
456456

457+
Test.skip = function (name_, _opts, _cb) {
458+
var args = getTestArgs.apply(null, arguments);
459+
args.opts.skip = true;
460+
return Test(args.name, args.opts, args.cb);
461+
};
462+
457463
// vim: set softtabstop=4 shiftwidth=4:

readme.markdown

+4
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,10 @@ test object `t` once all preceeding tests have finished. Tests execute serially.
6060
If you forget to `t.plan()` out how many assertions you are going to run and you
6161
don't call `t.end()` explicitly, your test will hang.
6262

63+
## test.skip(name, cb)
64+
65+
Generate a new test that will be skipped over.
66+
6367
## t.plan(n)
6468

6569
Declare that `n` assertions should be run. `t.end()` will be called

test/skip.js

+12
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,18 @@ test('do not skip this', { skip: false }, function(t) {
88
});
99

1010
test('skip this', { skip: true }, function(t) {
11+
t.fail('this should not even run');
12+
ran++;
13+
t.end();
14+
});
15+
16+
test.skip('skip this too', function(t) {
17+
t.fail('this should not even run');
18+
ran++;
19+
t.end();
20+
});
21+
22+
test.skip('skip this too', function(t) {
1123
t.fail('this should not even run');
1224
t.end();
1325
});

0 commit comments

Comments
 (0)