Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: os == 'android' OR os == 'win' && msix
- Manifest: extensions/pref/autoconfig/test/unit/xpcshell.toml
/* Any copyright is dedicated to the Public Domain.
const { updateAppInfo } = ChromeUtils.importESModule(
);
function run_test() {
updateAppInfo();
try {
Services.dirsvc.undefine("SysConfD");
} catch (e) {}
let defaultSysConfD = Services.dirsvc.get("SysConfD", Ci.nsIFile);
equal("/etc/xpcshell", defaultSysConfD.path, "SysConfD is in /etc");
}