itemengine-cypress-automation 1.0.64 → 1.0.66

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.64",
3
+ "version": "1.0.66",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -66,7 +66,8 @@ function setCommandLineEnvArgs() {
66
66
  * @param {string} ciBuildId
67
67
  */
68
68
  function runSorryCypress(ciBuildId, envArgs) {
69
- let command = `cypress-cloud run --parallel --browser chrome --record --key ImagineLearning/itemengine-cypress-automation --ci-build-id ${ciBuildId} ${envArgs}`;
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
71
  execSync(command, { stdio: "inherit" });
71
72
  }
72
73