Simple application which represents dashboard with candidates.
yarn install
yarn start
App will be available on http://localhost:3000
docker build -t crew-app .
docker run -it --rm -p 5000:5000 --name crew-container crew-app
App will be available on http://localhost:5000
Open Cypress
yarn cy:open
Run tests in headless mode
yarn cy:run
Build container
docker build -f Dockerfile.cy -t cy_test .
Run Cypress in container against server in docker
yarn cy:docker