test: move tests with many workers to sequential
These tests spawn many workers, which may be CPU intensive causing timeouts (see the referenced PR for more details). Let's move them to sequential. Refs: https://github.com/nodejs/node/pull/44090 PR-URL: https://github.com/nodejs/node/pull/44139 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
This commit is contained in:
parent
a31d572f00
commit
3738b57102
@ -5,7 +5,7 @@ if (!common.hasCrypto)
|
||||
const assert = require('assert');
|
||||
const http2 = require('http2');
|
||||
const makeDuplexPair = require('../common/duplexpair');
|
||||
const { Worker, parentPort } = require('worker_threads');
|
||||
const { parentPort, Worker } = require('worker_threads');
|
||||
|
||||
// This test ensures that workers can be terminated without error while
|
||||
// stream activity is ongoing, in particular the C++ function
|
Loading…
x
Reference in New Issue
Block a user