60 second timeout
This commit is contained in:
parent
452046fa90
commit
2f08c59e78
4 changed files with 7 additions and 6 deletions
|
@ -155,7 +155,7 @@ describe('Utils', () => {
|
|||
})
|
||||
|
||||
describe('curvesIntersect', function () {
|
||||
this.timeout(15000)
|
||||
this.timeout(20000)
|
||||
it('Should find 9 intersections between two curves', () => {
|
||||
let A = new Point(10, 10)
|
||||
let Acp = new Point(310, 40)
|
||||
|
|
|
@ -18,13 +18,13 @@ spawn(
|
|||
'run',
|
||||
'--no-bail',
|
||||
'testci',
|
||||
'--stream',
|
||||
'--parallel',
|
||||
// '--stream',
|
||||
// '--parallel',
|
||||
'--loglevel',
|
||||
'error',
|
||||
'--',
|
||||
'--file',
|
||||
`${collectorScript}`,
|
||||
// '--file',
|
||||
// `${collectorScript}`,
|
||||
'--no-warnings',
|
||||
'--timeout',
|
||||
'15000',
|
||||
|
|
|
@ -4,7 +4,7 @@ import chai from 'chai'
|
|||
import { timingPlugin } from '@freesewing/plugin-timing'
|
||||
|
||||
const expect = chai.expect
|
||||
const ciTimeout = 30000
|
||||
const ciTimeout = 60000
|
||||
|
||||
/*
|
||||
* This runs unit tests for pattern drafting
|
||||
|
|
|
@ -6,6 +6,7 @@ class TerseReporter {
|
|||
constructor(runner) {
|
||||
runner.on(EVENT_TEST_FAIL, (test, err) => {
|
||||
console.log(` FAIL: ${test.fullTitle()}`)
|
||||
console.log(err)
|
||||
})
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue