From 1ee7e9977a23beea6b976a03b6ae5b63188092f1 Mon Sep 17 00:00:00 2001 From: Pascal Jufer Date: Mon, 22 Aug 2022 17:01:26 +0200 Subject: [PATCH] Increase timeout for build step of concurrently in tests (#363) --- bin/concurrently.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/concurrently.spec.ts b/bin/concurrently.spec.ts index 14eca85c..d41c2889 100644 --- a/bin/concurrently.spec.ts +++ b/bin/concurrently.spec.ts @@ -32,10 +32,10 @@ beforeAll(async () => { bundle: true, outfile: path.join(tmpDir, 'concurrently.js'), }); -}); +}, 8000); afterAll(() => { - // Remove the temporary directory + // Remove the temporary directory where 'concurrently' was stored if (tmpDir) { fs.rmdirSync(tmpDir, { recursive: true }); }