mirror of https://github.com/lukechilds/node.git
Browse Source
PR-URL: https://github.com/nodejs/node/pull/9892 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>v4.x
committed by
Myles Borins
1 changed files with 5 additions and 5 deletions
@ -1,9 +1,9 @@ |
|||||
'use strict'; |
'use strict'; |
||||
var common = require('../common'); |
const common = require('../common'); |
||||
var assert = require('assert'); |
const assert = require('assert'); |
||||
|
|
||||
var content = require(common.fixturesDir + |
const content = require(common.fixturesDir + |
||||
'/json-with-directory-name-module/module-stub/one/two/three.js'); |
'/json-with-directory-name-module/module-stub/one/two/three.js'); |
||||
|
|
||||
assert.notEqual(content.rocko, 'artischocko'); |
assert.notStrictEqual(content.rocko, 'artischocko'); |
||||
assert.equal(content, 'hello from module-stub!'); |
assert.strictEqual(content, 'hello from module-stub!'); |
||||
|
Loading…
Reference in new issue