From 9ee2e9e03280614eed37bd62ea48d3a61ac5b8aa Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Tue, 6 Mar 2018 12:24:57 -0800 Subject: [PATCH] ci: improve logging when running aio/examples e2e tests (#22854) PR Close #22854 --- aio/tools/examples/run-example-e2e.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/aio/tools/examples/run-example-e2e.js b/aio/tools/examples/run-example-e2e.js index d45a8acea2..63320c5b67 100644 --- a/aio/tools/examples/run-example-e2e.js +++ b/aio/tools/examples/run-example-e2e.js @@ -147,7 +147,7 @@ function runProtractorSystemJS(prepPromise, appDir, appRunSpawnInfo, outputFile) let transpileError = false; // Start protractor. - + console.log(`\n\n=========== Running aio example tests for: ${appDir}`); const spawnInfo = spawnExt('yarn', ['protractor', PROTRACTOR_CONFIG_FILENAME, `--specs=${specFilename}`, @@ -199,6 +199,7 @@ function runProtractorAoT(appDir, outputFile) { // All protractor output is appended to the outputFile. // CLI version function runE2eTestsCLI(appDir, outputFile) { + console.log(`\n\n=========== Running aio example tests for: ${appDir}`); // `--preserve-symlinks` is needed due the symlinked `node_modules/` in each example. // `--no-webdriver-update` is needed to preserve the ChromeDriver version already installed. const args = ['e2e', '--preserve-symlinks', '--no-webdriver-update'];