From 0ec1d5d45295275be1aabb2c470165e5afb02ec6 Mon Sep 17 00:00:00 2001 From: Dmitry Gozman Date: Mon, 23 Jan 2023 15:26:05 -0800 Subject: [PATCH] test: disable "should work with video+trace" on headed (#20299) --- tests/library/video.spec.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/library/video.spec.ts b/tests/library/video.spec.ts index 52a4ffee38..17cb788add 100644 --- a/tests/library/video.spec.ts +++ b/tests/library/video.spec.ts @@ -724,8 +724,9 @@ it.describe('screencast', () => { expectAll(pixels, almostRed); }); - it('should work with video+trace', async ({ browser, trace }, testInfo) => { + it('should work with video+trace', async ({ browser, trace, headless }, testInfo) => { it.skip(trace === 'on'); + it.fixme(!headless, 'different trace screencast image size on all browsers'); const size = { width: 500, height: 400 }; const traceFile = testInfo.outputPath('trace.zip');