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

@ -20,7 +20,7 @@ import { spawn } from 'child_process';
.then(startApp)
.then(() => {
// Forward command-line args to test process.
const args = ['run', 'test', '--'].concat(process.argv.slice(2));
const args = ['run', 'test', '--', '--reporter', '../../tests/reporters/terse.js'].concat(process.argv.slice(2));
spawn('npm', args, { stdio: 'inherit' })
.on('exit', function(code) {
// Propagate exit code so that test failures are recognized.