feat: support minimum_chrome_version manifest key (#39256)

feat: support minimum_chrome_version extension key
This commit is contained in:
Shelley Vohr 2023-08-03 17:38:31 +02:00 committed by GitHub
parent e6931a788f
commit f8b05bc127
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 43 additions and 0 deletions

View file

@ -69,6 +69,25 @@ describe('chrome extensions', () => {
`)).to.eventually.have.property('id');
});
it('supports minimum_chrome_version manifest key', async () => {
const customSession = session.fromPartition(`persist:${require('uuid').v4()}`);
const w = new BrowserWindow({
show: false,
webPreferences: {
session: customSession,
sandbox: true
}
});
await w.loadURL('about:blank');
const extPath = path.join(fixtures, 'extensions', 'chrome-too-low-version');
const load = customSession.loadExtension(extPath);
await expect(load).to.eventually.be.rejectedWith(
`Loading extension at ${extPath} failed with: This extension requires Chromium version 999 or greater.`
);
});
it('can open WebSQLDatabase in a background page', async () => {
const customSession = session.fromPartition(`persist:${require('uuid').v4()}`);
const w = new BrowserWindow({ show: false, webPreferences: { session: customSession, sandbox: true } });