itemengine-cypress-automation 1.0.242 → 1.0.243
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
@@ -93,7 +93,7 @@ export function runSorryCypressSpinnaker() {
|
|
93
93
|
startTime = process.env.START_TIME;
|
94
94
|
ciBuildId = setCiBuildId("spinnaker", startTime);
|
95
95
|
const envArgs = setCommandLineEnvArgs()
|
96
|
-
let command = `cy2 run --parallel --browser chrome --record --key imaginelearning/itemengine-cypress-automation --ci-build-id ${ciBuildId} ${envArgs} --spec "cypress/e2e/ILC/**/*.js"`;
|
96
|
+
let command = `cy2 run --parallel --browser chrome --record --key imaginelearning/itemengine-cypress-automation --ci-build-id ${ciBuildId} ${envArgs},consoleErrors=true --spec "cypress/e2e/ILC/**/*.js"`;
|
97
97
|
console.log(`command: ${command}`);
|
98
98
|
execSync(command, { stdio: "inherit" });
|
99
99
|
}
|
@@ -120,7 +120,7 @@ export function runSorryCypressSpinnakerSmoke() {
|
|
120
120
|
startTime = process.env.START_TIME;
|
121
121
|
ciBuildId = setCiBuildId("spinnaker", startTime);
|
122
122
|
const envArgs = setCommandLineEnvArgs()
|
123
|
-
let command = `cy2 run --parallel --browser chrome --record --key imaginelearning/itemengine-cypress-automation --ci-build-id ${ciBuildId} ${envArgs}
|
123
|
+
let command = `cy2 run --parallel --browser chrome --record --key imaginelearning/itemengine-cypress-automation --ci-build-id ${ciBuildId} ${envArgs} --spec "cypress/e2e/ILC/**/*.smoke.js"`;
|
124
124
|
console.log(`command: ${command}`);
|
125
125
|
execSync(command, { stdio: "inherit" });
|
126
126
|
}
|