@jahia/cypress 3.14.8 → 3.14.9

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.
Files changed (2) hide show
  1. package/env.run.sh +6 -0
  2. package/package.json +1 -1
package/env.run.sh CHANGED
@@ -32,6 +32,12 @@ if [[ -z "${CYPRESS_CONFIGURATION_FILE}" ]]; then
32
32
  CYPRESS_CONFIGURATION_FILE=cypress.config.ts
33
33
  fi
34
34
 
35
+ if [[ "${TESTS_PROFILE}" != "" ]]; then
36
+ CYPRESS_CONFIGURATION_FILE=${TESTS_PROFILE}
37
+ else
38
+ CYPRESS_CONFIGURATION_FILE="cypress.config.ts"
39
+ fi
40
+
35
41
  echo "$(date +'%d %B %Y - %k:%M') == Running Cypress with configuration file ${CYPRESS_CONFIGURATION_FILE} =="
36
42
 
37
43
  yarn e2e:ci --config-file "${CYPRESS_CONFIGURATION_FILE}"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jahia/cypress",
3
- "version": "3.14.8",
3
+ "version": "3.14.9",
4
4
  "scripts": {
5
5
  "build": "tsc",
6
6
  "lint": "eslint src -c .eslintrc.json --ext .ts"