itemengine-cypress-automation 1.0.65 → 1.0.67

Sign up to get free protection for your applications and to get access to all the features.
package/Dockerfile CHANGED
@@ -1,6 +1,10 @@
1
1
  #use Cypress base image from https://github.com/cypress-io/cypress-docker-images
2
- FROM cypress/base:14.19.0
3
- FROM cypress/browsers:node14.19.0-chrome100-ff99-edge
2
+ # FROM cypress/base:14.19.0
3
+ # FROM cypress/browsers:node14.19.0-chrome100-ff99-edge
4
+
5
+ FROM cypress/included:12.17.2
6
+
7
+ RUN apt-get update && apt-get install curl -y
4
8
 
5
9
  WORKDIR /ie-e2e
6
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "itemengine-cypress-automation",
3
- "version": "1.0.65",
3
+ "version": "1.0.67",
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-cloud 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-cloud 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