Last active
September 17, 2024 14:57
-
-
Save SarahElson/cd25e05fb3a134d98e168498af67d671 to your computer and use it in GitHub Desktop.
How To Run Cypress Tests In Azure DevOps Pipeline
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
{ | |
"lambdatest_auth": { | |
"username": "<username>", | |
"access_key": "<access_key>" | |
}, | |
"browsers": [ | |
{ | |
"browser": "Chrome", | |
"platform": "Windows 10", | |
"versions": ["latest"] | |
}, | |
{ | |
"browser": "Chrome", | |
"platform": "Windows 10", | |
"versions": ["latest-1"] | |
}, | |
{ | |
"browser": "Firefox", | |
"platform": "Windows 10", | |
"versions": ["latest"] | |
}, | |
{ | |
"browser": "Firefox", | |
"platform": "Windows 10", | |
"versions": ["latest-1"] | |
} | |
], | |
"run_settings": { | |
"cypress_config_file": "cypress.json", | |
"build_name": "build-name", | |
"parallels": 4, | |
"specs": "./cypress/integration/lambdatest/*.spec.js", | |
"ignore_files": "", | |
"feature_file_suppport": false, | |
"network": false, | |
"headless": false, | |
"reporter_config_file": "", | |
"npm_dependencies": { | |
"cypress": "9.2.0" | |
} | |
}, | |
"tunnel_settings": { | |
"tunnel": false, | |
"tunnel_name": null | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment