From 1923132f49cb7d021b62605cbba319bd99980bed Mon Sep 17 00:00:00 2001 From: evilebottnawi Date: Mon, 16 Aug 2021 20:05:29 +0300 Subject: [PATCH] test: fix cli --- test/helpers/test-bin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/helpers/test-bin.js b/test/helpers/test-bin.js index 3592c3e814..9b68584aa4 100644 --- a/test/helpers/test-bin.js +++ b/test/helpers/test-bin.js @@ -37,7 +37,7 @@ const testBin = (testArgs = [], options) => { args = [webpackDevServerPath, ...configOptions, ...testArgs]; } - return execa("node", args, { cwd, env, timeout: 5000, ...options }); + return execa("node", args, { cwd, env, ...options }); }; const ipV4 =