forked from mirrors/gecko-dev
This should make a bit clearer that it is only starting the load, not waiting for its completion. Differential Revision: https://phabricator.services.mozilla.com/D188213
21 lines
525 B
JavaScript
21 lines
525 B
JavaScript
"use strict";
|
|
|
|
const INSTALL_PAGE = `${BASE}/file_install_extensions.html`;
|
|
|
|
async function installMozAM(filename) {
|
|
BrowserTestUtils.startLoadingURIString(
|
|
gBrowser.selectedBrowser,
|
|
INSTALL_PAGE
|
|
);
|
|
await BrowserTestUtils.browserLoaded(gBrowser.selectedBrowser);
|
|
|
|
await SpecialPowers.spawn(
|
|
gBrowser.selectedBrowser,
|
|
[`${BASE}/${filename}`],
|
|
async function (url) {
|
|
await content.wrappedJSObject.installMozAM(url);
|
|
}
|
|
);
|
|
}
|
|
|
|
add_task(() => testInstallMethod(installMozAM, "installAmo"));
|