From 5c7e4bf6a820d4e519f4768551a18d5b4c54a8ca Mon Sep 17 00:00:00 2001 From: cjihrig Date: Fri, 22 Mar 2024 17:17:04 -0400 Subject: [PATCH] temp - add a failure --- test/parallel/test-runner-cli-concurrency.js | 1 + 1 file changed, 1 insertion(+) diff --git a/test/parallel/test-runner-cli-concurrency.js b/test/parallel/test-runner-cli-concurrency.js index b2aa0ac6c3c6c5..1373b4ff92606b 100644 --- a/test/parallel/test-runner-cli-concurrency.js +++ b/test/parallel/test-runner-cli-concurrency.js @@ -23,6 +23,7 @@ test('concurrency of two', async () => { const args = ['--test', '--test-concurrency=2']; const cp = spawnSync(process.execPath, args, { cwd, env }); assert.match(cp.stderr.toString(), /concurrency: 2,/); + throw new Error('bye'); }); test('isolation=none uses a concurrency of one', async () => {