playwright/browsers.json
Andrey Lushnikov 23dfaf9e9b
feat: start downloading firefox-stable channel (#6177)
This patch adds support for downloading and running Playwright with
firefox-stable channel.

References #5993
2021-04-19 21:26:33 -07:00

39 lines
751 B
JSON

{
"comment": "Do not edit this file, use utils/roll_browser.js",
"browsers": [
{
"name": "chromium",
"revision": "869727",
"installByDefault": true
},
{
"name": "firefox",
"revision": "1245",
"installByDefault": true
},
{
"name": "firefox-stable",
"revision": "1242",
"installByDefault": false
},
{
"name": "webkit",
"revision": "1463",
"installByDefault": true,
"revisionOverrides": {
"mac10.14": "1443"
}
},
{
"name": "webkit-technology-preview",
"revision": "1443",
"installByDefault": false
},
{
"name": "ffmpeg",
"revision": "1005",
"installByDefault": true
}
]
}