decrease timeout now that it's working
This commit is contained in:
parent
67caa08f7b
commit
5f37bd8c1f
3 changed files with 3 additions and 8 deletions
|
@ -155,7 +155,6 @@ describe('Utils', () => {
|
||||||
})
|
})
|
||||||
|
|
||||||
describe('curvesIntersect', function () {
|
describe('curvesIntersect', function () {
|
||||||
this.timeout(20000)
|
|
||||||
it('Should find 9 intersections between two curves', () => {
|
it('Should find 9 intersections between two curves', () => {
|
||||||
let A = new Point(10, 10)
|
let A = new Point(10, 10)
|
||||||
let Acp = new Point(310, 40)
|
let Acp = new Point(310, 40)
|
||||||
|
|
|
@ -18,16 +18,12 @@ spawn(
|
||||||
'run',
|
'run',
|
||||||
'--no-bail',
|
'--no-bail',
|
||||||
'testci',
|
'testci',
|
||||||
// '--stream',
|
|
||||||
// '--parallel',
|
|
||||||
'--loglevel',
|
'--loglevel',
|
||||||
'error',
|
'error',
|
||||||
'--',
|
'--',
|
||||||
// '--file',
|
'--file',
|
||||||
// `${collectorScript}`,
|
`${collectorScript}`,
|
||||||
'--no-warnings',
|
'--no-warnings',
|
||||||
'--timeout',
|
|
||||||
'15000',
|
|
||||||
],
|
],
|
||||||
{ stdio: 'inherit' }
|
{ stdio: 'inherit' }
|
||||||
).on('exit', function (code) {
|
).on('exit', function (code) {
|
||||||
|
|
|
@ -4,7 +4,7 @@ import chai from 'chai'
|
||||||
import { timingPlugin } from '@freesewing/plugin-timing'
|
import { timingPlugin } from '@freesewing/plugin-timing'
|
||||||
|
|
||||||
const expect = chai.expect
|
const expect = chai.expect
|
||||||
const ciTimeout = 60000
|
const ciTimeout = 10000
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* This runs unit tests for pattern drafting
|
* This runs unit tests for pattern drafting
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue