зеркало из https://github.com/electron/electron.git
test: skip protocol.registerSchemesAsPrivileged stream test when media not supported (#27216)
This commit is contained in:
Родитель
2268c64a55
Коммит
85a9abf377
|
@ -908,8 +908,12 @@ describe('protocol module', () => {
|
|||
await fs.promises.unlink(videoPath);
|
||||
});
|
||||
|
||||
beforeEach(async () => {
|
||||
beforeEach(async function () {
|
||||
w = new BrowserWindow({ show: false });
|
||||
await w.loadURL('about:blank');
|
||||
if (!await w.webContents.executeJavaScript('document.createElement(\'video\').canPlayType(\'video/webm; codecs="vp8.0"\')')) {
|
||||
this.skip();
|
||||
}
|
||||
});
|
||||
|
||||
afterEach(async () => {
|
||||
|
|
Загрузка…
Ссылка в новой задаче