test: mark new test as failing in ff (#21122)

The test is failing for overridden Date in Firefox.

#21109
This commit is contained in:
Yury Semikhatsky 2023-02-22 16:36:39 -08:00 committed by GitHub
parent d6dae8ea1f
commit 2bb6bc7ad0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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',