Skip to content

chore: remove ffmpeg dependency from firefox nativeDeps in Ubuntu 22.04 #35030

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

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion packages/playwright-core/src/server/registry/nativeDeps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,6 @@ export const deps: any = {
'libxrandr2'
],
firefox: [
'ffmpeg',
'libasound2',
'libatk1.0-0',
'libcairo-gobject2',
Expand Down
1 change: 0 additions & 1 deletion tests/library/capabilities.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ it('should respect CSP @smoke', async ({ page, server }) => {

it('should play video @smoke', async ({ page, asset, browserName, isWindows, isLinux, mode }) => {
it.skip(browserName === 'webkit' && isWindows, 'passes locally but fails on GitHub Action bot, apparently due to a Media Pack issue in the Windows Server');
it.fixme(browserName === 'firefox' && isLinux, 'https://github.com/microsoft/playwright/issues/5721');
it.skip(mode.startsWith('service'));

// Safari only plays mp4 so we test WebKit with an .mp4 clip.
Expand Down
Loading