From e20baacc9c805082edb700bc7f15211ab8c402ca Mon Sep 17 00:00:00 2001 From: Ross Wollman Date: Tue, 9 Aug 2022 21:39:13 -0700 Subject: [PATCH] test: fix large string expectations (#16388) --- tests/page/page-evaluate.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/page/page-evaluate.spec.ts b/tests/page/page-evaluate.spec.ts index 9e7ea8695a..35c50e7221 100644 --- a/tests/page/page-evaluate.spec.ts +++ b/tests/page/page-evaluate.spec.ts @@ -141,7 +141,7 @@ it('should work with large strings', async ({ page }) => { }); it('should work with large unicode strings', async ({ page, browserName, platform }) => { - it.fail(browserName === 'firefox' && platform !== 'linux'); + it.fixme(browserName === 'firefox' && platform === 'darwin'); it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/16367' }); const expected = '🎭'.repeat(10000);