mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-28 18:08:47 -06:00
* upgrade to electron 2.0.18 and node 8.9.3
* use cypress/browsers:node8.9.3-chrome73 docker image
* fix type_spec for chrome
* Revert "fix type_spec for chrome"
This reverts commit 7914f68142.
* fix driver specs for chrome
* update engines to 8.9.3
Co-authored-by: Ben Kucera <14625260+Bkucera@users.noreply.github.com>
Co-authored-by: Brian Mann <brian.mann86@gmail.com>
18 lines
406 B
Bash
Executable File
18 lines
406 B
Bash
Executable File
set e+x
|
|
|
|
echo "This script should be run from cypress's root"
|
|
|
|
name=cypress/browsers:node8.9.3-chrome73
|
|
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
|