itemengine-cypress-automation 1.0.141-consoleLogsRemoved-13d1bfb.0 → 1.0.142-npmScriptsUpdate-6127061.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.141-consoleLogsRemoved-13d1bfb.0",
3
+ "version": "1.0.142-npmScriptsUpdate-6127061.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -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