itemengine-cypress-automation 1.0.140-npmScriptsUpdate-79ef955.0 → 1.0.140
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "itemengine-cypress-automation",
|
3
|
-
"version": "1.0.140
|
3
|
+
"version": "1.0.140",
|
4
4
|
"description": "",
|
5
5
|
"main": "index.js",
|
6
6
|
"scripts": {
|
@@ -35,4 +35,4 @@
|
|
35
35
|
"node-fetch": "^3.3.2",
|
36
36
|
"react-uuid": "^2.0.0"
|
37
37
|
}
|
38
|
-
}
|
38
|
+
}
|
@@ -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
|
|