diff --git a/tests/page/page-request-continue.spec.ts b/tests/page/page-request-continue.spec.ts index 8300959718..d4cc4a6e9a 100644 --- a/tests/page/page-request-continue.spec.ts +++ b/tests/page/page-request-continue.spec.ts @@ -173,9 +173,8 @@ it.describe('post data', () => { expect((await serverRequest.postBody).toString('utf8')).toBe('doggo'); }); - it('should compute content-length from post data', async ({ page, server, browserName }) => { + it('should compute content-length from post data', async ({ page, server }) => { it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/16027' }); - it.fixme(browserName === 'firefox'); await page.goto(server.EMPTY_PAGE); const data = 'a'.repeat(7500); await page.route('**/*', route => { diff --git a/tests/page/workers.spec.ts b/tests/page/workers.spec.ts index a9f88a0a9a..608afd9b80 100644 --- a/tests/page/workers.spec.ts +++ b/tests/page/workers.spec.ts @@ -174,9 +174,8 @@ it('should report network activity on worker creation', async function({ page, s expect(response.ok()).toBe(true); }); -it('should dispatch console messages when page has workers', async function({ page, browserName, server }) { +it('should dispatch console messages when page has workers', async function({ page, server }) { it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/15550' }); - it.fixme(browserName === 'firefox'); await page.goto(server.EMPTY_PAGE); await Promise.all([ page.waitForEvent('worker'),