clean up test output (#1656)
This commit is contained in:
parent
24f07ce791
commit
a2764109b0
|
|
@ -74,7 +74,7 @@ if (!existsSync(chromeBinary)) {
|
|||
}
|
||||
|
||||
// Launch the tests
|
||||
const args = ["test", "--", "--chrome", chromeBinary];
|
||||
const args = ["test", "--", "--raw", "--chrome", chromeBinary];
|
||||
if (configuration) {
|
||||
args.push("--configuration");
|
||||
args.push(configuration);
|
||||
|
|
@ -82,9 +82,6 @@ if (configuration) {
|
|||
if (verbose) {
|
||||
args.push("--verbose");
|
||||
}
|
||||
if (teamcity) {
|
||||
args.push("--raw");
|
||||
}
|
||||
|
||||
const testProcess = spawn("npm", args, { cwd: path.resolve(__dirname, "..") });
|
||||
testProcess.stderr.pipe(process.stderr);
|
||||
|
|
|
|||
Loading…
Reference in New Issue