Skip to content

Instantly share code, notes, and snippets.

@SarahElson
Last active September 17, 2024 14:57
Show Gist options
  • Save SarahElson/cd25e05fb3a134d98e168498af67d671 to your computer and use it in GitHub Desktop.
Save SarahElson/cd25e05fb3a134d98e168498af67d671 to your computer and use it in GitHub Desktop.
How To Run Cypress Tests In Azure DevOps Pipeline
{
"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