Skip to content

Commit 6ae1d49

Browse files
committed
fix
1 parent e061cd4 commit 6ae1d49

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lib/internal/test_runner/test.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,10 +471,13 @@ class Suite extends Test {
471471
this.fn = () => {};
472472
}
473473
async run() {
474+
this.parent.activeSubtests++;
475+
this.startTime = hrtime();
474476
for (const subtest of this.subtests) {
475477
await subtest.run();
476478
}
477-
await super.run();
479+
this.pass();
480+
this.postRun();
478481
}
479482
}
480483

0 commit comments

Comments
 (0)