itemengine-cypress-automation 1.0.295-e2e6thFebFixes-348b431.0 → 1.0.296-addedLogsInrunSorryCypressSpinnaker-1c00e48.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
@@ -94,10 +94,15 @@ export function runSorryCypressLocal() {
|
|
94
94
|
* @method runSorryCypressSpinnaker
|
95
95
|
*/
|
96
96
|
export function runSorryCypressSpinnaker() {
|
97
|
+
console.log('Inside runSorryCypressSpinnaker');
|
97
98
|
process.env.CYPRESS_API_URL = "https://cypress-director.imaginelearning.tech/";
|
99
|
+
console.log('CYPRESS_API_URL:', process.env.CYPRESS_API_URL);
|
98
100
|
startTime = process.env.START_TIME;
|
101
|
+
console.log('START_TIME:', startTime);
|
99
102
|
ciBuildId = setCiBuildId("spinnaker", startTime);
|
103
|
+
console.log('ciBuildId:', ciBuildId);
|
100
104
|
const envArgs = setCommandLineEnvArgs()
|
105
|
+
console.log('envArgs:', envArgs);
|
101
106
|
let command = `cy2 run --parallel --browser chrome --record --key imaginelearning/itemengine-cypress-automation --ci-build-id ${ciBuildId} ${envArgs} --spec "cypress/e2e/ILC/**/*.js"`;
|
102
107
|
console.log(`command: ${command}`);
|
103
108
|
execSync(command, { stdio: "inherit" });
|