Skip to content

Commit 4fbabba

Browse files
author
James Halliday
committed
only test passes
1 parent 4f05679 commit 4fbabba

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

index.js

+8
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,13 @@ function createHarness (conf_) {
6161
return results;
6262
};
6363

64+
var only = false;
65+
test.only = function (name) {
66+
if (only) throw new Error('there can only be one only test');
67+
results.only(name);
68+
only = true;
69+
return test.apply(null, arguments);
70+
};
71+
6472
return test;
6573
}

lib/results.js

+12-1
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,18 @@ var nextTick = typeof setImmediate !== 'undefined'
66
: process.nextTick
77
;
88

9-
module.exports = function (test) {
9+
module.exports = function () {
1010
var output = through();
1111
output.pause();
1212
output.queue('TAP version 13\n');
1313

1414
var results = new Results(output);
1515
output.push = function (t) { results.push(t) };
1616

17+
output.only = function (name) {
18+
results.only = name;
19+
};
20+
1721
nextTick(function next () {
1822
var t = results.tests.shift();
1923
if (!t && results.running) return;
@@ -37,6 +41,13 @@ Results.prototype.push = function (t, parentT) {
3741
var self = this;
3842
var write = function (s) { self.stream.queue(s) };
3943
t.once('prerun', function () {
44+
if (self.only && self.only !== t.name && !parentT) {
45+
var nt = self.tests.shift();
46+
if (nt) nt.run()
47+
else self.close();
48+
return;
49+
}
50+
4051
self.running ++;
4152
write('# ' + t.name + '\n');
4253
});

0 commit comments

Comments
 (0)