1
0
Fork 0

run test instead of testci

This commit is contained in:
Enoch Riese 2022-11-15 11:32:48 -06:00
parent d0e4aa899d
commit 6bf599efa3
2 changed files with 3 additions and 3 deletions

View file

@ -26,7 +26,7 @@
"buildall": "lerna run cibuild_step0 && lerna run cibuild_step1 && lerna run cibuild_step2 && lerna run cibuild_step3 && lerna run cibuild_step4 && lerna run cibuild_step5 && lerna run cibuild_step6 && lerna run cibuild_step7",
"build": "yarn buildall",
"wbuild": "yarn wbuildall",
"testall": "node --trace-warnings scripts/testall.js",
"testall": "node scripts/testall.js",
"lint": "lerna run lint -- ",
"qa": "yarn qa:prettier && yarn qa:lint",
"qa:prettier": "npx prettier",

View file

@ -17,7 +17,7 @@ spawn(
[
'run',
'--no-bail',
'testci',
'test',
'--stream',
'--parallel',
'--loglevel',
@ -25,7 +25,7 @@ spawn(
'--',
'--file',
`${collectorScript}`,
'--trace-warnings',
'--no-warnings',
'--timeout=15000',
],
{ stdio: 'inherit' }