Skip to content

Commit ec29543

Browse files
committed
test: update factory example and ARG test browser versions
1 parent 99ae13d commit ec29543

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

factory/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -66,23 +66,23 @@ Example: `CYPRESS_VERSION='13.11.0'`
6666

6767
The version of Chrome to install. If the `ARG` variable is unset or an empty string, Chrome is not installed. The exact version must be used, no wildcards or shorthands are supported.
6868

69-
Example: `CHROME_VERSION='125.0.6422.141-1'`
69+
Example: `CHROME_VERSION='131.0.6778.264-1'`
7070

7171
[Chrome versions](https://www.ubuntuupdates.org/package/google_chrome/stable/main/base/google-chrome-stable)
7272

7373
### FIREFOX_VERSION
7474

7575
The version of Firefox to install. If the `ARG` variable is unset or an empty string, Firefox is not installed. The exact version must be used, no wildcards or shorthands are supported.
7676

77-
Example: `FIREFOX_VERSION='126.0.1'`
77+
Example: `FIREFOX_VERSION='134.0'`
7878

7979
[Firefox versions](https://download-installer.cdn.mozilla.net/pub/firefox/releases/)
8080

8181
### EDGE_VERSION
8282

8383
The version of Edge to install. If the `ARG` variable is unset or an empty string, Edge is not installed. The exact version must be used, no wildcards or shorthands are supported.
8484

85-
Example: `EDGE_VERSION='125.0.2535.85-1'`
85+
Example: `EDGE_VERSION='131.0.2903.112-1'`
8686

8787
[Edge versions](https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-stable/)
8888

@@ -136,9 +136,9 @@ Create a `Dockerfile` with the following content:
136136
# Args are defined in the Dockerfile before the FROM command.
137137
# Using these args will cause an image to be created with
138138
# Node.js (default version from .env file), Chrome, Firefox and Edge.
139-
ARG CHROME_VERSION='125.0.6422.141-1'
140-
ARG EDGE_VERSION='125.0.2535.85-1'
141-
ARG FIREFOX_VERSION='126.0.1'
139+
ARG CHROME_VERSION='131.0.6778.264-1'
140+
ARG EDGE_VERSION='131.0.2903.112-1'
141+
ARG FIREFOX_VERSION='134.0'
142142

143143
FROM cypress/factory
144144

@@ -173,7 +173,7 @@ RUN npx cypress install
173173
Run the Docker commands:
174174

175175
```bash
176-
docker build . --build-arg CHROME_VERSION='125.0.6422.141-1' --build-arg EDGE_VERSION='125.0.2535.85-1' --build-arg FIREFOX_VERSION='126.0.1' -t test
176+
docker build . --build-arg CHROME_VERSION='131.0.6778.264-1' --build-arg EDGE_VERSION='131.0.2903.112-1' --build-arg FIREFOX_VERSION='134.0' -t test
177177
docker run -it --rm test npx cypress run -b chrome
178178
```
179179

@@ -222,7 +222,7 @@ Since this example only uses Chrome, removing Edge and Firefox is as simple as n
222222
Create a `Dockerfile` with the following content:
223223

224224
```dockerfile
225-
ARG CHROME_VERSION='125.0.6422.141-1'
225+
ARG CHROME_VERSION='131.0.6778.264-1'
226226
227227
FROM cypress/factory
228228

factory/test-project/argsDefined.Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Args are defined in the Dockerfile before the FROM command.
2-
ARG CHROME_VERSION='126.0.6478.114-1'
3-
ARG EDGE_VERSION='126.0.2592.61-1'
4-
ARG FIREFOX_VERSION='128.0'
2+
ARG CHROME_VERSION='131.0.6778.264-1'
3+
ARG EDGE_VERSION='131.0.2903.112-1'
4+
ARG FIREFOX_VERSION='134.0'
55

66
ARG BASE_TEST_IMAGE='cypress/factory'
77

0 commit comments

Comments
 (0)