mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-25 10:30:39 -06:00
* electron@8.1.0 * set app.allowRendererProcessReuse to true https://github.com/electron/electron/issues/18397 * Fix taking screenshots in Electron with debug logs enabled * explicitly use png format for Page.captureScreenshot * don't need to do Network.enable i believe this was done because we thought it was needed for Network.getCookies, etc, but it does not seem to be used * yarn.lock * remove dead code * start and stop screencast around electron screenshots * update debug logging * cypress/browsers:node12.13.0-chrome80-ff73 * fix unit tests * debug e2e tests * detect first available servernum * electron@8.1.1 * no reuse * Revert " cypress/browsers:node12.13.0-chrome80-ff73" This reverts commit404803a169. * cypress/browsers:node12.13.0-chrome80-ff74 * Revert "debug e2e tests" This reverts commit7a09e3630e. * Revert "detect first available servernum" This reverts commit7ac95072b2.
18 lines
413 B
Bash
Executable File
18 lines
413 B
Bash
Executable File
set e+x
|
|
|
|
echo "This script should be run from cypress's root"
|
|
|
|
name=cypress/browsers:node12.13.0-chrome80-ff74
|
|
echo "Pulling CI container $name"
|
|
|
|
docker pull $name
|
|
|
|
echo "Starting Docker image with cypress volume attached"
|
|
echo "You should be able to edit files locally"
|
|
echo "but execute the code in the container"
|
|
|
|
docker run -v $PWD:/home/person/cypress \
|
|
-w /home/person/cypress \
|
|
-it $name \
|
|
/bin/bash
|