itemengine-cypress-automation 1.0.88 → 1.0.89

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/deploy/e2e/run.sh CHANGED
@@ -3,4 +3,4 @@ env=$STAGE
3
3
  echo Environment to test: $env
4
4
  echo START_TIME: $START_TIME
5
5
 
6
- npm run spinnaker:smoke
6
+ npm run spinnaker:untagged
package/package.json CHANGED
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "itemengine-cypress-automation",
3
- "version": "1.0.88",
3
+ "version": "1.0.89",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
7
  "build": "echo 'building'",
8
8
  "test": "echo 'success'",
9
9
  "local": "node scripts/local.mjs --env fileConfig=ilqa,theme=ilc",
10
- "spinnaker": "node scripts/spinnaker.mjs --env theme=ilc",
11
- "local:untagged": "node scripts/local.mjs --env fileConfig=ilqa,theme=ilc,grepUntagged=true",
12
- "spinnaker:untagged": "node scripts/spinnaker.mjs --env theme=ilc,grepUntagged=true",
10
+ "local:untagged": "node scripts/local.mjs --env fileConfig=ilqa,theme=ilc,grepTags=-css+-a11y",
13
11
  "local:smoke": "node scripts/local.mjs --env fileConfig=ilqa,theme=ilc,grepTags=smoke+-css+-a11y",
12
+ "spinnaker": "node scripts/spinnaker.mjs --env theme=ilc",
13
+ "spinnaker:untagged": "node scripts/spinnaker.mjs --env theme=ilc,grepTags=-css+-a11y",
14
14
  "spinnaker:smoke": "node scripts/spinnaker.mjs --env theme=ilc,grepTags=smoke+-css+-a11y",
15
15
  "cy:ildev": "cypress open --env fileConfig=ildev",
16
16
  "cy:ilprod": "cypress open --env fileConfig=ilprod",
@@ -82,6 +82,6 @@ export function runSorryCypressSpinnaker() {
82
82
  startTime = process.env.START_TIME;
83
83
  ciBuildId = setCiBuildId("spinnaker", startTime);
84
84
  const envArgs = setCommandLineEnvArgs()
85
- let command = `cy2 run --parallel --browser chrome --record --key imaginelearning/itemengine-cypress-automation --ci-build-id ${ciBuildId} ${envArgs} --spec "cypress/e2e/ILC/**/*.smoke.js"`;
85
+ let command = `cy2 run --parallel --browser chrome --record --key imaginelearning/itemengine-cypress-automation --ci-build-id ${ciBuildId} ${envArgs},grepTags=-css+-a11y --spec "cypress/e2e/ILC/**/*.js"`;
86
86
  execSync(command, { stdio: "inherit" });
87
87
  }