mirror of
https://github.com/nodejs/node.git
synced 2025-05-21 08:27:49 +00:00

* Favor strictEqual * Use const where appropriate * Modernize where possible PR-URL: https://github.com/nodejs/node/pull/8468 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
24 lines
755 B
JavaScript
24 lines
755 B
JavaScript
/* eslint-disable strict */
|
|
const common = require('../common');
|
|
const path = require('path');
|
|
const assert = require('assert');
|
|
|
|
common.globalCheck = false;
|
|
|
|
baseFoo = 'foo'; // eslint-disable-line no-undef
|
|
global.baseBar = 'bar';
|
|
|
|
assert.strictEqual('foo', global.baseFoo,
|
|
'x -> global.x in base level not working');
|
|
|
|
assert.strictEqual('bar',
|
|
baseBar, // eslint-disable-line no-undef
|
|
'global.x -> x in base level not working');
|
|
|
|
var module = require(path.join(common.fixturesDir, 'global', 'plain'));
|
|
const fooBar = module.fooBar;
|
|
|
|
assert.strictEqual('foo', fooBar.foo, 'x -> global.x in sub level not working');
|
|
|
|
assert.strictEqual('bar', fooBar.bar, 'global.x -> x in sub level not working');
|