test: mark new test as failing in ff (#21122)
The test is failing for overridden Date in Firefox. #21109
This commit is contained in:
parent
d6dae8ea1f
commit
2bb6bc7ad0
|
|
@ -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',
|
||||
|
|
|
|||
Loading…
Reference in a new issue