Last active
September 4, 2019 17:04
-
-
Save asantos00/7a1c484ac29127865bfc940f8362e1f2 to your computer and use it in GitHub Desktop.
CircleCI cypress.io config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: 2.1 | |
orbs: | |
cypress: cypress-io/cypress@1 | |
workflows: | |
e2e: | |
jobs: | |
- cypress/run: | |
start: npm start | |
wait-on: 'http://localhost:3000' | |
command: npm run cy:run | |
executor: cypress/browsers-chrome69 | |
browser: chrome | |
post-steps: | |
- store_artifacts: | |
path: cypress/videos | |
- store_artifacts: | |
path: cypress/screenshots | |
- store_test_results: | |
path: cypress/results |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment