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
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);