itemengine-cypress-automation 1.0.243-addedConsoleErrorsScript-2ce0702.0 → 1.0.244-consoleErrorScriptFullExecution-a3a0f2c.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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "itemengine-cypress-automation",
3
- "version": "1.0.243-addedConsoleErrorsScript-2ce0702.0",
3
+ "version": "1.0.244-consoleErrorScriptFullExecution-a3a0f2c.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -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},consoleErrors=true --spec "cypress/e2e/ILC/**/*.smoke.js"`;
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
  }