mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
385 B
14 lines
385 B
8 years ago
|
// Flags: --no-deprecation
|
||
|
'use strict';
|
||
|
const common = require('../common');
|
||
|
const assert = require('assert');
|
||
|
const path = require('path');
|
||
|
|
||
|
const dir = path.join(common.fixturesDir, 'GH-7131');
|
||
|
const b = require(path.join(dir, 'b'));
|
||
|
const a = require(path.join(dir, 'a'));
|
||
|
|
||
|
assert.strictEqual(a.length, 1);
|
||
|
assert.strictEqual(b.length, 0);
|
||
|
assert.deepStrictEqual(a[0].exports, b);
|