up timeout to 15000 again
This commit is contained in:
parent
13fe84baac
commit
5cc37a84bb
2 changed files with 3 additions and 3 deletions
|
@ -26,7 +26,7 @@ spawn(
|
|||
'--file',
|
||||
`${collectorScript}`,
|
||||
'--no-warnings',
|
||||
'--timeout=10000',
|
||||
'--timeout=15000',
|
||||
],
|
||||
{ stdio: 'inherit' }
|
||||
).on('exit', function (code) {
|
||||
|
|
|
@ -39,7 +39,7 @@ export const testPatternDrafting = (Pattern, log = false) => {
|
|||
*/
|
||||
if (family !== 'utilities') {
|
||||
describe('Draft for humans:', function () {
|
||||
this.timeout(10000)
|
||||
this.timeout(15000)
|
||||
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(10000)
|
||||
this.timeout(15000)
|
||||
for (const type of ['cisFemale', 'cisMale']) {
|
||||
describe(type, () => {
|
||||
for (const size in fams[family][type]) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue