itemengine-cypress-automation 1.0.92 → 1.0.94

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "itemengine-cypress-automation",
3
- "version": "1.0.92",
3
+ "version": "1.0.94",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -45,7 +45,7 @@ function setCommandLineEnvArgs() {
45
45
  } else if (env === 'qa') {
46
46
  fileConfig = 'fileConfig=ilqa'
47
47
  } else if (env === 'prod') {
48
- fileConfig = 'fileConfig=prod'
48
+ fileConfig = 'fileConfig=ilprod'
49
49
  } else {
50
50
  fileConfig = `fileConfig=${env}`
51
51
  }
@@ -70,7 +70,7 @@ export function runSorryCypressLocal() {
70
70
  startTime = Math.round(Date.now() / 1000000);
71
71
  ciBuildId = setCiBuildId(user, startTime);
72
72
  const envArgs = setCommandLineEnvArgs()
73
- let command = `cy2 run --parallel --browser chrome --record --key imaginelearning/itemengine-cypress-automation --ci-build-id ${ciBuildId} ${envArgs} --spec "cypress/e2e/ILC/**/*.smoke.js"`;
73
+ let command = `cy2 run --parallel --browser chrome --record --key imaginelearning/itemengine-cypress-automation --ci-build-id ${ciBuildId} ${envArgs} --spec "cypress/e2e/ILC/**/*.js"`;
74
74
  execSync(command, { stdio: "inherit" });
75
75
  }
76
76