mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-16 01:13:08 +09:00
17 lines
405 B
JavaScript
17 lines
405 B
JavaScript
"use strict";
|
|
|
|
let env = Cc["@mozilla.org/process/environment;1"].getService(Ci.nsIEnvironment);
|
|
|
|
add_task(function* test_getEnvironment() {
|
|
env.set("FOO", "BAR");
|
|
|
|
let environment = Subprocess.getEnvironment();
|
|
|
|
equal(environment.FOO, "BAR");
|
|
equal(environment.PATH, env.get("PATH"));
|
|
|
|
env.set("FOO", null);
|
|
|
|
environment = Subprocess.getEnvironment();
|
|
equal(environment.FOO || "", "");
|
|
});
|