From a2764109b06d5dda11c89661836954aa1896fb6d Mon Sep 17 00:00:00 2001 From: Andrew Stanton-Nurse Date: Tue, 20 Mar 2018 17:23:34 -0700 Subject: [PATCH] clean up test output (#1656) --- client-ts/FunctionalTests/selenium/run-ci-tests.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/client-ts/FunctionalTests/selenium/run-ci-tests.ts b/client-ts/FunctionalTests/selenium/run-ci-tests.ts index 882365bdfb..dd71ddadb3 100644 --- a/client-ts/FunctionalTests/selenium/run-ci-tests.ts +++ b/client-ts/FunctionalTests/selenium/run-ci-tests.ts @@ -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);