-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' of https://github.com/cypress-io/cypress into …
…feature/experimental-retries
- Loading branch information
Showing
104 changed files
with
6,359 additions
and
1,259 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"chrome:beta": "115.0.5790.13", | ||
"chrome:stable": "114.0.5735.106", | ||
"chrome:beta": "118.0.5993.11", | ||
"chrome:stable": "117.0.5938.88", | ||
"chrome:minimum": "64.0.3282.0" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
version: '3' | ||
|
||
services: | ||
dev: | ||
image: cypress/browsers:latest | ||
ports: | ||
# Share debugging ports | ||
- 5566:5566 | ||
- 5567:5567 | ||
environment: | ||
# Use Hist file from shared volume | ||
HISTFILE: /root/hist/.bash_history | ||
# Setup inspect to use the more permissive address when debugging so | ||
# that we can connect to it from ouside the docker container | ||
CYPRESS_DOCKER_DEV_INSPECT_OVERRIDE: '0.0.0.0:5566' | ||
# This disables CI mode which causes cypress to build differently | ||
CI: '' | ||
command: /bin/bash | ||
working_dir: /opt/cypress | ||
volumes: | ||
# Copy Cypress source to docker container | ||
- .:/opt/cypress | ||
- bash-history:/root/hist | ||
watch: | ||
image: cypress/browsers:latest | ||
environment: | ||
# This disables CI mode which causes cypress to build differently | ||
CI: '' | ||
command: yarn watch | ||
working_dir: /opt/cypress | ||
volumes: | ||
# Copy Cypress source to docker container | ||
- .:/opt/cypress | ||
ci: | ||
# This should mirror the image used in workflows.yml | ||
image: cypress/browsers-internal:node18.15.0-chrome114-ff115 | ||
ports: | ||
- 5566:5566 | ||
- 5567:5567 | ||
command: /bin/bash | ||
environment: | ||
HISTFILE: /root/hist/.bash_history | ||
CYPRESS_DOCKER_DEV_INSPECT_OVERRIDE: '0.0.0.0:5566' | ||
working_dir: /opt/cypress | ||
volumes: | ||
- .:/opt/cypress | ||
- bash-history:/root/hist | ||
|
||
# persist terminal history between runs in a virtual volume | ||
volumes: | ||
bash-history: |
Oops, something went wrong.