test: skip protocol.registerSchemesAsPrivileged stream test when media not supported (#27230)

Co-authored-by: Milan Burda <milan.burda@gmail.com>
This commit is contained in:
trop[bot]
2021-01-07 14:42:55 -08:00
committed by GitHub
parent d498d4bf18
commit f3ce79936a

View File

@@ -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 () => {