Cypress Runner
Description
Create a runner script for locally executing cypress tests.
Extracted vars to file that can be imported to each of the cypress runner scripts (ci, local), and update MAKEFILE to run them locally.
Issue ##10027
@nutrina which tests are failing for you?
@ksolo right now it is not running any more. It can't connect to Chrome .... Do I need to reset something?
This is where Chrome got stuck:

- It gets stuck at github login
- System runs out of memory cause it takes in 96GB while running on my local machine
I would also increase the default ETH balance, to make sure you can perform more transaction or run tests multiple times, by adding this param to the testrpc service: --defaultBalanceEther 1000000000
testrpc:
image: trufflesuite/ganache-cli
ports:
- "8545:8545"
command: '--host 0.0.0.0 --mnemonic "${TEST_MNEMONIC}" --defaultBalanceEther 1000000000'
deploy:
replicas: 1
resources:
limits:
memory: 1024M
reservations:
memory: 128M
Other than the observations above this looks good to me.
@nutrina Should I close this now since you have what you need in the other branch (which I believe is all merged)