We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 188fbb1 commit 78e48c9Copy full SHA for 78e48c9
lib/results.js
@@ -66,7 +66,6 @@ Results.prototype._watch = function (t) {
66
});
67
68
t.on('test', function (st) { self._watch(st) });
69
- t.on('next', function (st) { st.run() });
70
};
71
72
Results.prototype.close = function () {
lib/test.js
@@ -97,7 +97,7 @@ Test.prototype.end = function () {
97
t.on('end', function () {
98
self.end();
99
100
- this.emit('next', t);
+ t.run();
101
return;
102
}
103
0 commit comments