@jahia/cypress 3.17.9 → 3.18.1

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.Dockerfile +3 -3
  2. package/package.json +1 -1
package/env.Dockerfile CHANGED
@@ -1,9 +1,9 @@
1
- FROM cypress/browsers:node16.16.0-chrome107-ff107-edge
1
+ FROM cypress/browsers:node-20.10.0-chrome-118.0.5993.88-1-ff-118.0.2-edge-118.0.2088.46-1
2
2
 
3
3
  ARG MAVEN_VER="3.8.1"
4
4
  ARG MAVEN_BASE_URL="https://archive.apache.org/dist/maven/maven-3"
5
5
 
6
- RUN apt-get update && apt-get install -y jq
6
+ RUN apt-get update && apt-get install -y jq curl
7
7
 
8
8
  RUN adduser --disabled-password jahians
9
9
 
@@ -15,7 +15,7 @@ COPY --chown=jahians:jahians package.json yarn.lock /home/jahians/
15
15
  RUN mkdir -p /home/jahians/run-artifacts /home/jahians/results /home/jahians/cypress/plugins
16
16
 
17
17
  #CI=true reduces the verbosity of the installation logs
18
- RUN CI=true yarn install
18
+ RUN CI=true yarn install --non-interactive
19
19
 
20
20
  COPY --chown=jahians:jahians . /home/jahians
21
21
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jahia/cypress",
3
- "version": "3.17.9",
3
+ "version": "3.18.1",
4
4
  "scripts": {
5
5
  "build": "tsc",
6
6
  "lint": "eslint src -c .eslintrc.json --ext .ts"