itemengine-cypress-automation 1.0.141-consoleLogsRemoved-13d1bfb.0 → 1.0.141
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.141
|
3
|
+
"version": "1.0.141",
|
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
|
+
}
|
@@ -78,7 +78,8 @@ export function runSorryCypressLocal() {
|
|
78
78
|
startTime = Math.round(Date.now() / 1000000);
|
79
79
|
ciBuildId = setCiBuildId(user, startTime);
|
80
80
|
const envArgs = setCommandLineEnvArgs()
|
81
|
-
let command = `cy2 run --parallel --browser chrome --record --key imaginelearning/itemengine-cypress-automation --ci-build-id ${ciBuildId} ${envArgs} --spec cypress/e2e/ILC/**/*.js`;
|
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}`);
|
82
83
|
execSync(command, { stdio: "inherit" });
|
83
84
|
}
|
84
85
|
|
@@ -90,7 +91,8 @@ export function runSorryCypressSpinnaker() {
|
|
90
91
|
startTime = process.env.START_TIME;
|
91
92
|
ciBuildId = setCiBuildId("spinnaker", startTime);
|
92
93
|
const envArgs = setCommandLineEnvArgs()
|
93
|
-
let command = `cy2 run --parallel --browser chrome --record --key imaginelearning/itemengine-cypress-automation --ci-build-id ${ciBuildId} ${envArgs} --spec cypress/e2e/ILC/**/*.js`;
|
94
|
+
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}`);
|
94
96
|
execSync(command, { stdio: "inherit" });
|
95
97
|
}
|
96
98
|
|
@@ -103,7 +105,8 @@ export function runSorryCypressSpinnaker() {
|
|
103
105
|
startTime = Math.round(Date.now() / 1000000);
|
104
106
|
ciBuildId = setCiBuildId(user, startTime);
|
105
107
|
const envArgs = setCommandLineEnvArgs()
|
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`;
|
108
|
+
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}`);
|
107
110
|
execSync(command, { stdio: "inherit" });
|
108
111
|
}
|
109
112
|
|
@@ -115,7 +118,8 @@ export function runSorryCypressSpinnakerSmoke() {
|
|
115
118
|
startTime = process.env.START_TIME;
|
116
119
|
ciBuildId = setCiBuildId("spinnaker", startTime);
|
117
120
|
const envArgs = setCommandLineEnvArgs()
|
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`;
|
121
|
+
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}`);
|
119
123
|
execSync(command, { stdio: "inherit" });
|
120
124
|
}
|
121
125
|
|