Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: resolve flakiness in worker*.test-free-called
Fixes: nodejs#51003 The issue arises from the `getFreeCallCount()` function yielding the initial value of 0. Upon instantiation of the `Worker` object, it increments to 1. In the case of this flaky test, if the creation of the `Worker` object is faster, the subsequent `getFreeCallCount()` call always returns 1 instead of the expected 0.
- Loading branch information