Merge pull request #1668 from aspnet/release/2.1

clean up test output (#1656)
This commit is contained in:
Andrew Stanton-Nurse 2018-03-20 17:24:09 -07:00 committed by GitHub
commit b2bbaa1d32
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 4 deletions

View File

@ -74,7 +74,7 @@ if (!existsSync(chromeBinary)) {
} }
// Launch the tests // Launch the tests
const args = ["test", "--", "--chrome", chromeBinary]; const args = ["test", "--", "--raw", "--chrome", chromeBinary];
if (configuration) { if (configuration) {
args.push("--configuration"); args.push("--configuration");
args.push(configuration); args.push(configuration);
@ -82,9 +82,6 @@ if (configuration) {
if (verbose) { if (verbose) {
args.push("--verbose"); args.push("--verbose");
} }
if (teamcity) {
args.push("--raw");
}
const testProcess = spawn("npm", args, { cwd: path.resolve(__dirname, "..") }); const testProcess = spawn("npm", args, { cwd: path.resolve(__dirname, "..") });
testProcess.stderr.pipe(process.stderr); testProcess.stderr.pipe(process.stderr);