0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/test/simple/test-global.js

17 lines
480 B
JavaScript

common = require("../common");
assert = common.assert
baseFoo = "foo";
global.baseBar = "bar";
assert.equal("foo", global.baseFoo, "x -> global.x in base level not working");
assert.equal("bar", baseBar, "global.x -> x in base level not working");
var module = require("../fixtures/global/plain"),
fooBar = module.fooBar;
assert.equal("foo", fooBar.foo, "x -> global.x in sub level not working");
assert.equal("bar", fooBar.bar, "global.x -> x in sub level not working");