1
0
Fork 0

Remove --parallel. Incompatible with --file.

This commit is contained in:
Nick Dower 2022-02-19 10:43:22 +01:00
parent ae490a05d5
commit 5621140d49
76 changed files with 77 additions and 77 deletions

View file

@ -12,7 +12,7 @@ if (fs.existsSync(outputLog)) {
}
// Run all tests, specifying the collector script.
spawn('lerna', ['run', '--no-bail', 'testci', '--', '--file', `${collectorScript}`], { stdio: 'inherit' })
spawn('lerna', ['run', '--no-bail', 'testci', '--stream', '--', '--file', `${collectorScript}`], { stdio: 'inherit' })
.on('exit', function(code) {
// If a failure occurred, the log file will have been created. Print it.
if (fs.existsSync(outputLog)) {