Skip to content

Commit

Permalink
test: disable chromium headed tracing test (#6878)
Browse files Browse the repository at this point in the history
  • Loading branch information
dgozman authored Jun 3, 2021
1 parent 0830c85 commit 375ceca
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/tracing.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,9 @@ for (const params of [
height: 768,
}
]) {
browserTest(`should produce screencast frames ${params.id}`, async ({ video, contextFactory, browserName, platform }, testInfo) => {
browserTest(`should produce screencast frames ${params.id}`, async ({ video, contextFactory, browserName, platform, headless }, testInfo) => {
browserTest.fixme(browserName === 'chromium' && video, 'Same screencast resolution conflicts');
browserTest.fixme(browserName === 'chromium' && !headless, 'Chromium screencast on headed has a min width issue');
browserTest.fixme(params.id === 'fit' && browserName === 'chromium' && platform === 'darwin', 'High DPI maxes image at 600x600');
browserTest.fixme(params.id === 'fit' && browserName === 'webkit' && platform === 'linux', 'Image size is flaky');

Expand Down

0 comments on commit 375ceca

Please sign in to comment.