feat(firefox-beta): roll to r1394 (#22052)
References https://github.com/microsoft/playwright/issues/21760 --------- Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Andrey Lushnikov <aslushnikov@gmail.com>
This commit is contained in:
parent
7f1de6568c
commit
d8f5a3f2ce
|
@ -27,9 +27,9 @@
|
|||
},
|
||||
{
|
||||
"name": "firefox-beta",
|
||||
"revision": "1391",
|
||||
"revision": "1394",
|
||||
"installByDefault": false,
|
||||
"browserVersion": "110.0b7"
|
||||
"browserVersion": "112.0b3"
|
||||
},
|
||||
{
|
||||
"name": "webkit",
|
||||
|
|
|
@ -92,7 +92,8 @@ it('should work with glob', async () => {
|
|||
expect(globToRegex('http://localhost:3000/signin-oidc*').test('http://localhost:3000/signin-oidcnice')).toBeTruthy();
|
||||
});
|
||||
|
||||
it('should intercept network activity from worker', async function({ page, server, isAndroid }) {
|
||||
it('should intercept network activity from worker', async function({ page, server, isAndroid, browserName, browserMajorVersion }) {
|
||||
it.fixme(browserName === 'firefox' && browserMajorVersion === 112, 'https://github.com/microsoft/playwright/issues/21760');
|
||||
it.skip(isAndroid);
|
||||
|
||||
await page.goto(server.EMPTY_PAGE);
|
||||
|
|
|
@ -142,7 +142,8 @@ it('should attribute network activity for worker inside iframe to the iframe', a
|
|||
expect(request.frame()).toBe(frame);
|
||||
});
|
||||
|
||||
it('should report network activity', async function({ page, server }) {
|
||||
it('should report network activity', async function({ page, server, browserName, browserMajorVersion }) {
|
||||
it.fixme(browserName === 'firefox' && browserMajorVersion === 112, 'https://github.com/microsoft/playwright/issues/21760');
|
||||
const [worker] = await Promise.all([
|
||||
page.waitForEvent('worker'),
|
||||
page.goto(server.PREFIX + '/worker/worker.html'),
|
||||
|
@ -158,7 +159,8 @@ it('should report network activity', async function({ page, server }) {
|
|||
expect(response.ok()).toBe(true);
|
||||
});
|
||||
|
||||
it('should report network activity on worker creation', async function({ page, server }) {
|
||||
it('should report network activity on worker creation', async function({ page, server, browserName, browserMajorVersion }) {
|
||||
it.fixme(browserName === 'firefox' && browserMajorVersion === 112, 'https://github.com/microsoft/playwright/issues/21760');
|
||||
// Chromium needs waitForDebugger enabled for this one.
|
||||
await page.goto(server.EMPTY_PAGE);
|
||||
const url = server.PREFIX + '/one-style.css';
|
||||
|
|
Loading…
Reference in New Issue