blob: 6e451bbb74a0c178888371ea996bad85e63592d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
const { Services } = ChromeUtils.import("resource://gre/modules/Services.jsm");
function isParentProcess() {
return Services.appinfo.processType == Ci.nsIXULRuntime.PROCESS_TYPE_DEFAULT;
}
function run_test() {
if (!isParentProcess()) {
const pb = Services.prefs;
Assert.equal(pb.getBoolPref("Test.IPC.bool.new"), true);
Assert.equal(pb.getIntPref("Test.IPC.int.new"), 23);
Assert.equal(pb.getCharPref("Test.IPC.char.new"), "hey");
}
}
|