blob: a6d22e8703c66cfcb61a3e56cccca65c31b676db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* -*- 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"
);
});
|