itemengine-cypress-automation 1.0.88 → 1.0.89
Sign up to get free protection for your applications and to get access to all the features.
- package/deploy/e2e/run.sh +1 -1
- package/package.json +4 -4
- package/scripts/sorry-cypress.mjs +1 -1
package/deploy/e2e/run.sh
CHANGED
package/package.json
CHANGED
@@ -1,16 +1,16 @@
|
|
1
1
|
{
|
2
2
|
"name": "itemengine-cypress-automation",
|
3
|
-
"version": "1.0.
|
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
|
-
"
|
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/**/*.
|
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
|
}
|