From 2bb6bc7ad0c3e8daf285b2ffa9cf75927bc45963 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Wed, 22 Feb 2023 16:36:39 -0800 Subject: [PATCH] test: mark new test as failing in ff (#21122) The test is failing for overridden Date in Firefox. #21109 --- tests/page/page-evaluate.spec.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/page/page-evaluate.spec.ts b/tests/page/page-evaluate.spec.ts index 3bd2679022..def8297f01 100644 --- a/tests/page/page-evaluate.spec.ts +++ b/tests/page/page-evaluate.spec.ts @@ -703,7 +703,9 @@ it('should work with overridden globalThis.Window/Document/Node', async ({ page, } }); -it('should work with overridden URL/Date/RegExp', async ({ page, server }) => { +it('should work with overridden URL/Date/RegExp', async ({ page, server, browserName }) => { + it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/21109' }); + it.fixme(browserName === 'firefox'); const testCases = [ // @ts-ignore () => globalThis.URL = 'foo',