We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fbabba commit 876930eCopy full SHA for 876930e
lib/results.js
@@ -91,9 +91,15 @@ Results.prototype.push = function (t, parentT) {
91
if (res.ok) self.pass ++
92
else self.fail ++
93
});
94
- t.once('end', onend);
95
96
- function onend () {
+ t.once('end', function () {
+ if (t._skip) {
97
+ var nt = self.tests.shift();
98
+ if (nt) nt.run();
99
+ else self.close();
100
+ return;
101
+ }
102
+
103
self.running --;
104
if (subtests !== 0) return;
105
@@ -104,7 +110,7 @@ Results.prototype.push = function (t, parentT) {
110
else if (self.running === 0) {
111
self.close();
106
112
}
107
- }
113
+ });
108
114
};
109
115
116
Results.prototype.close = function () {
0 commit comments