From 0a23c55475f9823c3ecc85d3000a7eddc6e80792 Mon Sep 17 00:00:00 2001 From: Lars Kappert Date: Tue, 28 Feb 2023 14:41:03 +0100 Subject: [PATCH] Add increased timeout to test/tasks.js (for Windows) --- test/tasks.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/tasks.js b/test/tasks.js index 44dacb8b..4ea7cb93 100644 --- a/test/tasks.js +++ b/test/tasks.js @@ -51,6 +51,10 @@ const getContainer = options => { }; }; +test.before(t => { + t.timeout(90 * 1000); +}); + test.serial.beforeEach(t => { const bare = mkTmpDir(); const target = mkTmpDir();