From f67f72b76aa7a943d421b45306610e3449e7b2ac Mon Sep 17 00:00:00 2001 From: ehmicky Date: Sun, 10 Sep 2023 13:11:17 +0100 Subject: [PATCH] Fix slow test --- test/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.js b/test/test.js index 44dfe61893..b2c084f13f 100644 --- a/test/test.js +++ b/test/test.js @@ -111,7 +111,7 @@ test('localDir option', async t => { t.true(envPaths.some(envPath => envPath.endsWith('.bin'))); }); -test('execPath option', async t => { +test.serial('execPath option', async t => { const {path: execPath} = await getNode('16.0.0'); const {stdout} = await execa('node', ['-p', 'process.env.Path || process.env.PATH'], {preferLocal: true, execPath}); t.true(stdout.includes('16.0.0'));