-
Notifications
You must be signed in to change notification settings - Fork 3.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[internal] make every package depend on playwright
#26614
Comments
For the record: add a plan of action for this. |
Breaking: Playwright no longer downloads browsers automaticallyNote If you are using Playwright recommends to use However, up to v1.38, installing the v1.37 and earlier
v1.38 and later
Recommended migration Run - run: npm ci
- run: npx playwright install --with-deps Alternative migration option - not recommended Add // package.json
{
"devDependencies": {
"playwright": "1.38.0",
"@playwright/browser-chromium": "1.38.0",
"@playwright/browser-firefox": "1.38.0",
"@playwright/browser-webkit": "1.38.0"
}
} |
…icrosoft#26672) Additionally introduce `@playwright/browser-<browser>` packages that just download the respective browser, but do not export anything. References microsoft#26614.
@playwright/browser-chromium
,@playwright/browser-webkit
,@playwright/browser-firefox
.playwright
not install browsers.playwright
package.playwright-test
toplaywright
, make@playwright/test
reexport everything fromplaywright
- chore: make@playwright/test
depend onplaywright
#26946playwright-ct-core
depend onplaywright
instead of@playwright/test
The text was updated successfully, but these errors were encountered: