fix
This commit is contained in:
parent
f15d3e42f0
commit
fb63029367
|
|
@ -315,8 +315,8 @@ test('should return app name / version from manifest', async ({ launchElectronAp
|
|||
});
|
||||
});
|
||||
|
||||
test('should report downloads', async ({ launchElectronApp, server }) => {
|
||||
test.skip(parseInt(require('electron/package.json').version.split('.')[0], 10) < 30, 'Depends on https://github.com/electron/electron/pull/41718');
|
||||
test('should report downloads', async ({ launchElectronApp, electronMajorVersion, server }) => {
|
||||
test.skip(electronMajorVersion < 30, 'Depends on https://github.com/electron/electron/pull/41718');
|
||||
|
||||
server.setRoute('/download', (req, res) => {
|
||||
res.setHeader('Content-Type', 'application/octet-stream');
|
||||
|
|
|
|||
|
|
@ -285,7 +285,7 @@ it('should fulfill popup main request using alias', async ({ page, server, isEle
|
|||
it('request.postData is not null when fetching FormData with a Blob', {
|
||||
annotation: { type: 'issue', description: 'https://github.com/microsoft/playwright/issues/24077' }
|
||||
}, async ({ server, page, browserName, isElectron, electronMajorVersion }) => {
|
||||
it.skip(isElectron && electronMajorVersion < 30, 'error: Browser context management is not supported.');
|
||||
it.skip(isElectron && electronMajorVersion < 31);
|
||||
it.fixme(browserName === 'webkit', 'The body is empty in WebKit when intercepting');
|
||||
await page.goto(server.EMPTY_PAGE);
|
||||
await page.setContent(`
|
||||
|
|
|
|||
Loading…
Reference in a new issue