mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-26 08:59:03 -06:00
* chore(deps): electron@9.0.5 BREAKING CHANGE: libgbm is a requirement * update node, xcode, docker images * lockfile * chore(types): tsify lib/gui/windows and spec * fix Electron extension loading global extension loading was deprecated in 9, now has to be per-session * make windows fns stubbable * update electron_spec * tsify issue_173_spec * use upstream foxdriver to fix FF >= 75 see https://github.com/benmalka/foxdriver/issues/7 * update test * for now, install libgbm-dev at ci time see https://github.com/cypress-io/cypress-docker-images/pull/332 * fix open mode * remove devtools-ext dir
19 lines
441 B
Bash
Executable File
19 lines
441 B
Bash
Executable File
#!/bin/bash
|
|
set e+x
|
|
|
|
echo "This script should be run from cypress's root"
|
|
|
|
name=cypress/browsers:node12.14.1-chrome83-ff77
|
|
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${WORKING_DIR:-} \
|
|
-it $name \
|
|
/bin/bash
|