From 13fe84baac4e44193dbe6c1fc3e5d072c53f642a Mon Sep 17 00:00:00 2001 From: Enoch Riese Date: Tue, 15 Nov 2022 12:02:46 -0600 Subject: [PATCH] up timeout in drafting tests --- scripts/testall.js | 4 ++-- tests/designs/drafting.mjs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/testall.js b/scripts/testall.js index 7c263c1f1ac..be2ad1cc8db 100644 --- a/scripts/testall.js +++ b/scripts/testall.js @@ -17,7 +17,7 @@ spawn( [ 'run', '--no-bail', - 'test', + 'testci', '--stream', '--parallel', '--loglevel', @@ -26,7 +26,7 @@ spawn( '--file', `${collectorScript}`, '--no-warnings', - '--timeout=15000', + '--timeout=10000', ], { stdio: 'inherit' } ).on('exit', function (code) { diff --git a/tests/designs/drafting.mjs b/tests/designs/drafting.mjs index 241c5382c40..7aa80f11243 100644 --- a/tests/designs/drafting.mjs +++ b/tests/designs/drafting.mjs @@ -39,7 +39,7 @@ export const testPatternDrafting = (Pattern, log = false) => { */ if (family !== 'utilities') { describe('Draft for humans:', function () { - this.timeout(5000) + this.timeout(10000) for (const type of ['cisFemale', 'cisMale']) { describe(type, () => { for (const size in adult[type]) { @@ -62,7 +62,7 @@ export const testPatternDrafting = (Pattern, log = false) => { const fams = { doll, giant } for (const family of ['doll', 'giant']) { describe(`Draft for ${family}:`, function () { - this.timeout(5000) + this.timeout(10000) for (const type of ['cisFemale', 'cisMale']) { describe(type, () => { for (const size in fams[family][type]) {