itemengine-cypress-automation 1.0.140-npmScriptsUpdate-79ef955.0 → 1.0.141-consoleLogsRemoved-13d1bfb.0
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
@@ -79,7 +79,6 @@ export function runSorryCypressLocal() {
|
|
79
79
|
ciBuildId = setCiBuildId(user, startTime);
|
80
80
|
const envArgs = setCommandLineEnvArgs()
|
81
81
|
let command = `cy2 run --parallel --browser chrome --record --key imaginelearning/itemengine-cypress-automation --ci-build-id ${ciBuildId} ${envArgs} --spec cypress/e2e/ILC/**/*.js`;
|
82
|
-
console.log(`command: ${command}`);
|
83
82
|
execSync(command, { stdio: "inherit" });
|
84
83
|
}
|
85
84
|
|
@@ -92,7 +91,6 @@ export function runSorryCypressSpinnaker() {
|
|
92
91
|
ciBuildId = setCiBuildId("spinnaker", startTime);
|
93
92
|
const envArgs = setCommandLineEnvArgs()
|
94
93
|
let command = `cy2 run --parallel --browser chrome --record --key imaginelearning/itemengine-cypress-automation --ci-build-id ${ciBuildId} ${envArgs} --spec cypress/e2e/ILC/**/*.js`;
|
95
|
-
console.log(`command: ${command}`);
|
96
94
|
execSync(command, { stdio: "inherit" });
|
97
95
|
}
|
98
96
|
|
@@ -106,7 +104,6 @@ export function runSorryCypressSpinnaker() {
|
|
106
104
|
ciBuildId = setCiBuildId(user, startTime);
|
107
105
|
const envArgs = setCommandLineEnvArgs()
|
108
106
|
let command = `cy2 run --parallel --browser chrome --record --key imaginelearning/itemengine-cypress-automation --ci-build-id ${ciBuildId} ${envArgs} --spec cypress/e2e/ILC/**/*.smoke.js`;
|
109
|
-
console.log(`command: ${command}`);
|
110
107
|
execSync(command, { stdio: "inherit" });
|
111
108
|
}
|
112
109
|
|
@@ -119,7 +116,6 @@ export function runSorryCypressSpinnakerSmoke() {
|
|
119
116
|
ciBuildId = setCiBuildId("spinnaker", startTime);
|
120
117
|
const envArgs = setCommandLineEnvArgs()
|
121
118
|
let command = `cy2 run --parallel --browser chrome --record --key imaginelearning/itemengine-cypress-automation --ci-build-id ${ciBuildId} ${envArgs} --spec cypress/e2e/ILC/**/*.smoke.js`;
|
122
|
-
console.log(`command: ${command}`);
|
123
119
|
execSync(command, { stdio: "inherit" });
|
124
120
|
}
|
125
121
|
|