Skip to content

Commit 876930e

Browse files
author
James Halliday
committed
passing the skip test
1 parent 4fbabba commit 876930e

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

lib/results.js

+9-3
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,15 @@ Results.prototype.push = function (t, parentT) {
9191
if (res.ok) self.pass ++
9292
else self.fail ++
9393
});
94-
t.once('end', onend);
9594

96-
function onend () {
95+
t.once('end', function () {
96+
if (t._skip) {
97+
var nt = self.tests.shift();
98+
if (nt) nt.run();
99+
else self.close();
100+
return;
101+
}
102+
97103
self.running --;
98104
if (subtests !== 0) return;
99105

@@ -104,7 +110,7 @@ Results.prototype.push = function (t, parentT) {
104110
else if (self.running === 0) {
105111
self.close();
106112
}
107-
}
113+
});
108114
};
109115

110116
Results.prototype.close = function () {

0 commit comments

Comments
 (0)