1
0
Fork 0

up timeout in drafting tests

This commit is contained in:
Enoch Riese 2022-11-15 12:02:46 -06:00
parent 6bf599efa3
commit 13fe84baac
2 changed files with 4 additions and 4 deletions

View file

@ -17,7 +17,7 @@ spawn(
[ [
'run', 'run',
'--no-bail', '--no-bail',
'test', 'testci',
'--stream', '--stream',
'--parallel', '--parallel',
'--loglevel', '--loglevel',
@ -26,7 +26,7 @@ spawn(
'--file', '--file',
`${collectorScript}`, `${collectorScript}`,
'--no-warnings', '--no-warnings',
'--timeout=15000', '--timeout=10000',
], ],
{ stdio: 'inherit' } { stdio: 'inherit' }
).on('exit', function (code) { ).on('exit', function (code) {

View file

@ -39,7 +39,7 @@ export const testPatternDrafting = (Pattern, log = false) => {
*/ */
if (family !== 'utilities') { if (family !== 'utilities') {
describe('Draft for humans:', function () { describe('Draft for humans:', function () {
this.timeout(5000) this.timeout(10000)
for (const type of ['cisFemale', 'cisMale']) { for (const type of ['cisFemale', 'cisMale']) {
describe(type, () => { describe(type, () => {
for (const size in adult[type]) { for (const size in adult[type]) {
@ -62,7 +62,7 @@ export const testPatternDrafting = (Pattern, log = false) => {
const fams = { doll, giant } const fams = { doll, giant }
for (const family of ['doll', 'giant']) { for (const family of ['doll', 'giant']) {
describe(`Draft for ${family}:`, function () { describe(`Draft for ${family}:`, function () {
this.timeout(5000) this.timeout(10000)
for (const type of ['cisFemale', 'cisMale']) { for (const type of ['cisFemale', 'cisMale']) {
describe(type, () => { describe(type, () => {
for (const size in fams[family][type]) { for (const size in fams[family][type]) {