node/test/fixtures/node_modules/foo.js
Gibson Fahnestock 51f4c8bf5c
test: s/assert.equal/assert.strictEqual/
Use assert.strictEqual instead of assert.equal in tests, manually
convert types where necessary.

PR-URL: https://github.com/nodejs/node/pull/10698
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Teddy Katz <teddy.katz@gmail.com>
2017-01-30 12:08:40 -05:00

4 lines
171 B
JavaScript

console.error(__filename);
console.error(module.paths.join('\n') + '\n');
const assert = require('assert');
assert.strictEqual(require('baz'), require('./baz/index.js'));