Run Tests Sequentially #49923
Labels
feature request
Issues that request new features to be added to Node.js.
test_runner
Issues and PRs related to the test runner subsystem.
What is the problem this feature will solve?
Some singletons cannot be tested in parallel through the
node:test
runner:The current test runner runs all the tests in parallel.
What is the feature you are proposing to solve the problem?
Add a
--serial
flag to maintain single-threaded nature of JS in the test runner by running a single test file(in a child process) at a time not all at once as it does currently.What alternatives have you considered?
Running tests in the same process, such as the discussion in issue #48871.
The text was updated successfully, but these errors were encountered: