Source code
Revision control
Copy as Markdown
Other Tools
"use strict";
ChromeUtils.defineESModuleGetters(this, {
ExtensionTestUtils:
});
Services.prefs.setBoolPref("extensions.webextensions.remote", false);
// https_first automatically upgrades http to https, but the tests are not
// designed to expect that. And it is not easy to change that because
Services.prefs.setBoolPref("dom.security.https_first", false);
ExtensionTestUtils.init(this);
Services.io.offline = true;
var createHttpServer = (...args) => {
AddonTestUtils.maybeInit(this);
return AddonTestUtils.createHttpServer(...args);
};