From 375ceca9501255de584da20f5adfff4f5aecd204 Mon Sep 17 00:00:00 2001 From: Dmitry Gozman Date: Thu, 3 Jun 2021 14:33:33 -0700 Subject: [PATCH] test: disable chromium headed tracing test (#6878) --- tests/tracing.spec.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/tracing.spec.ts b/tests/tracing.spec.ts index 6347972d1e..700b3ad309 100644 --- a/tests/tracing.spec.ts +++ b/tests/tracing.spec.ts @@ -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');