Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: os == 'win' && socketprocess_networking && fission OR os == 'mac' && socketprocess_networking && fission OR os == 'mac' && debug OR os == 'linux' && socketprocess_networking
- Manifest: toolkit/components/extensions/test/xpcshell/xpcshell-remote.toml includes toolkit/components/extensions/test/xpcshell/xpcshell-common.toml
- Manifest: toolkit/components/extensions/test/xpcshell/xpcshell.toml includes toolkit/components/extensions/test/xpcshell/xpcshell-common.toml
/* -*- Mode: indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* vim: set sts=2 sw=2 et tw=80: */
"use strict";
add_task(async function change_remote() {
let remote = Services.prefs.getBoolPref("extensions.webextensions.remote");
Assert.equal(
WebExtensionPolicy.useRemoteWebExtensions,
remote,
"value of useRemoteWebExtensions matches the pref"
);
Services.prefs.setBoolPref("extensions.webextensions.remote", !remote);
Assert.equal(
WebExtensionPolicy.useRemoteWebExtensions,
remote,
"value of useRemoteWebExtensions is still the same after changing the pref"
);
});