itemengine-cypress-automation 1.0.74 → 1.0.76

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/Dockerfile CHANGED
@@ -16,4 +16,4 @@ RUN chmod +x ./run.sh
16
16
 
17
17
  RUN npm ci
18
18
 
19
- RUN $(npm bin)/cypress verify
19
+ #RUN $(npm bin)/cypress verify
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "itemengine-cypress-automation",
3
- "version": "1.0.74",
3
+ "version": "1.0.76",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -67,7 +67,7 @@ function setCommandLineEnvArgs() {
67
67
  */
68
68
  function runSorryCypress(ciBuildId, envArgs) {
69
69
  // let command = `cypress-cloud run --parallel --browser chrome --record --key ImagineLearning/itemengine-cypress-automation --ci-build-id ${ciBuildId} ${envArgs}`;
70
- let command = `cypress run --parallel --browser chrome --record --key ImagineLearning/itemengine-cypress-automation --ci-build-id ${ciBuildId} ${envArgs} --spec "cypress\\e2e\\ILC\\ShortTextResponse\\*.js"`;
70
+ let command = `cypress run --parallel --browser chrome --record --key ImagineLearning/itemengine-cypress-automation --ci-build-id ${ciBuildId} ${envArgs} --spec "cypress/e2e/ILC/ShortTextResponse/*.js"`;
71
71
  execSync(command, { stdio: "inherit" });
72
72
  }
73
73