mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
test: unskip passing firefox tests (#16233)
This commit is contained in:
parent
8eca6339c2
commit
e4efc300c7
@ -173,9 +173,8 @@ it.describe('post data', () => {
|
|||||||
expect((await serverRequest.postBody).toString('utf8')).toBe('doggo');
|
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.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/16027' });
|
||||||
it.fixme(browserName === 'firefox');
|
|
||||||
await page.goto(server.EMPTY_PAGE);
|
await page.goto(server.EMPTY_PAGE);
|
||||||
const data = 'a'.repeat(7500);
|
const data = 'a'.repeat(7500);
|
||||||
await page.route('**/*', route => {
|
await page.route('**/*', route => {
|
||||||
|
@ -174,9 +174,8 @@ it('should report network activity on worker creation', async function({ page, s
|
|||||||
expect(response.ok()).toBe(true);
|
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.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/15550' });
|
||||||
it.fixme(browserName === 'firefox');
|
|
||||||
await page.goto(server.EMPTY_PAGE);
|
await page.goto(server.EMPTY_PAGE);
|
||||||
await Promise.all([
|
await Promise.all([
|
||||||
page.waitForEvent('worker'),
|
page.waitForEvent('worker'),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user