Skip to content

Commit b7d06d4

Browse files
authored
test: worker network attribution is still not fixed in Firefox 113 (microsoft#22390)
We'll need to wait until it is fixed upstream. References microsoft#21760
1 parent 0c3c6ed commit b7d06d4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/page/interception.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ it('should work with glob', async () => {
9393
});
9494

9595
it('should intercept network activity from worker', async function({ page, server, isAndroid, browserName, browserMajorVersion }) {
96-
it.fixme(browserName === 'firefox' && browserMajorVersion === 112, 'https://github.com/microsoft/playwright/issues/21760');
96+
it.fixme(browserName === 'firefox' && browserMajorVersion >= 112, 'https://github.com/microsoft/playwright/issues/21760');
9797
it.skip(isAndroid);
9898

9999
await page.goto(server.EMPTY_PAGE);

tests/page/workers.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ it('should attribute network activity for worker inside iframe to the iframe', a
143143
});
144144

145145
it('should report network activity', async function({ page, server, browserName, browserMajorVersion }) {
146-
it.fixme(browserName === 'firefox' && browserMajorVersion === 112, 'https://github.com/microsoft/playwright/issues/21760');
146+
it.fixme(browserName === 'firefox' && browserMajorVersion >= 112, 'https://github.com/microsoft/playwright/issues/21760');
147147
const [worker] = await Promise.all([
148148
page.waitForEvent('worker'),
149149
page.goto(server.PREFIX + '/worker/worker.html'),
@@ -160,7 +160,7 @@ it('should report network activity', async function({ page, server, browserName,
160160
});
161161

162162
it('should report network activity on worker creation', async function({ page, server, browserName, browserMajorVersion }) {
163-
it.fixme(browserName === 'firefox' && browserMajorVersion === 112, 'https://github.com/microsoft/playwright/issues/21760');
163+
it.fixme(browserName === 'firefox' && browserMajorVersion >= 112, 'https://github.com/microsoft/playwright/issues/21760');
164164
// Chromium needs waitForDebugger enabled for this one.
165165
await page.goto(server.EMPTY_PAGE);
166166
const url = server.PREFIX + '/one-style.css';

0 commit comments

Comments
 (0)