@revoloo/cypress6
Version:
Cypress.io end to end testing tool
102 lines (101 loc) • 1.98 kB
JavaScript
exports['browsers returns the expected list of browsers 1'] = [
{
"name": "chrome",
"family": "chromium",
"channel": "stable",
"displayName": "Chrome",
"versionRegex": {},
"binary": [
"google-chrome",
"chrome",
"google-chrome-stable"
]
},
{
"name": "chromium",
"family": "chromium",
"channel": "stable",
"displayName": "Chromium",
"versionRegex": {},
"binary": [
"chromium-browser",
"chromium"
]
},
{
"name": "chrome",
"family": "chromium",
"channel": "canary",
"displayName": "Canary",
"versionRegex": {},
"binary": "google-chrome-canary"
},
{
"name": "firefox",
"family": "firefox",
"channel": "stable",
"displayName": "Firefox",
"versionRegex": {},
"binary": "firefox"
},
{
"name": "firefox",
"family": "firefox",
"channel": "dev",
"displayName": "Firefox Developer Edition",
"versionRegex": {},
"binary": [
"firefox-developer-edition",
"firefox"
]
},
{
"name": "firefox",
"family": "firefox",
"channel": "nightly",
"displayName": "Firefox Nightly",
"versionRegex": {},
"binary": [
"firefox-nightly",
"firefox-trunk"
]
},
{
"name": "edge",
"family": "chromium",
"channel": "stable",
"displayName": "Edge",
"versionRegex": {},
"binary": [
"edge",
"microsoft-edge"
]
},
{
"name": "edge",
"family": "chromium",
"channel": "canary",
"displayName": "Edge Canary",
"versionRegex": {},
"binary": "edge-canary"
},
{
"name": "edge",
"family": "chromium",
"channel": "beta",
"displayName": "Edge Beta",
"versionRegex": {},
"binary": "edge-beta"
},
{
"name": "edge",
"family": "chromium",
"channel": "dev",
"displayName": "Edge Dev",
"versionRegex": {},
"binary": [
"edge-dev",
"microsoft-edge-dev"
]
}
]