Skip to content

Commit 70267a0

Browse files
kvakilruyadorno
authored andcommitted
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: #44090 PR-URL: #44139 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
1 parent 86a7fb0 commit 70267a0

3 files changed

+1
-1
lines changed

test/parallel/test-worker-http2-stream-terminate.js test/sequential/test-worker-http2-stream-terminate.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ if (!common.hasCrypto)
55
const assert = require('assert');
66
const http2 = require('http2');
77
const makeDuplexPair = require('../common/duplexpair');
8-
const { Worker, parentPort } = require('worker_threads');
8+
const { parentPort, Worker } = require('worker_threads');
99

1010
// This test ensures that workers can be terminated without error while
1111
// stream activity is ongoing, in particular the C++ function

0 commit comments

Comments
 (0)