Skip to content

Commit c32b131

Browse files
committed
fixed bug
1 parent e436a61 commit c32b131

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

index.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ function createHarness (conf_) {
5252
});
5353

5454
t.on('test', function sub (st) {
55+
count++;
5556
st.on('test', sub);
5657
st.on('end', onend);
5758
});
@@ -76,6 +77,7 @@ function createHarness (conf_) {
7677

7778
process.nextTick(function () {
7879
if (pending.length) return pending.shift()();
80+
console.error("count", count)
7981
if (count === 0) {
8082
out.close();
8183
}
@@ -90,4 +92,4 @@ function createHarness (conf_) {
9092
return test;
9193
}
9294

93-
// vim: set softtabstop=4 shiftwidth=4:
95+
// vim: set softtabstop=4 shiftwidth=4:

0 commit comments

Comments
 (0)