Skip to content

Commit

Permalink
fixup!
Browse files Browse the repository at this point in the history
  • Loading branch information
ZYSzys committed Dec 7, 2019
1 parent 7815ee6 commit ea05ebc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel/test-require-resolve.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const re = /^The "request" argument must be of type string\. Received type \w+$/
// node_modules.
const resolvedPaths = require.resolve.paths('eslint');
assert.strictEqual(Array.isArray(resolvedPaths), true);
assert.strictEqual(resolvedPaths.includes('/node_modules'), true);
assert.strictEqual(resolvedPaths[0].includes('node_modules'), true);

// relativeModules.
const relativeModules = ['.', '..', './foo', '../bar'];
Expand Down

0 comments on commit ea05ebc

Please sign in to comment.