Skip to content

Commit

Permalink
test_runner: remove root tracking set
Browse files Browse the repository at this point in the history
The wasRootSetup Set in the test harness appears to be
redundant, since the startTime field can be used interchangeably.
This commit removes wasRootSetup.
  • Loading branch information
cjihrig committed Mar 5, 2023
1 parent 7e6bc93 commit 726c357
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions lib/internal/test_runner/harness.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ const {
const { bigint: hrtime } = process.hrtime;

const testResources = new SafeMap();
const wasRootSetup = new SafeWeakSet();

function createTestTree(options = kEmptyObject) {
return setup(new Test({ __proto__: null, ...options, name: '<root>' }));
Expand Down Expand Up @@ -105,7 +104,7 @@ function collectCoverage(rootTest, coverage) {
}

function setup(root) {
if (wasRootSetup.has(root)) {
if (root.startTime !== null) {
return root;
}

Expand Down Expand Up @@ -164,8 +163,6 @@ function setup(root) {
}

root.startTime = hrtime();

wasRootSetup.add(root);
return root;
}

Expand Down

0 comments on commit 726c357

Please sign in to comment.