Skip to content

Commit 1cb9d4f

Browse files
committed
Adjust NODE_PATH test to fix linting issue
Fixes https://travis-ci.org/avajs/ava/jobs/291603944 by changing the name of the module being imported. This failure is most likely caused by <import-js/eslint-plugin-import#891>. I've updated the package lock to pull in the newer eslint-plugin-import as well.
1 parent 1ea758f commit 1cb9d4f

File tree

3 files changed

+29
-15
lines changed

3 files changed

+29
-15
lines changed

package-lock.json

+28-14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/fixture/node-paths.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import foo from 'nested/foo'; // eslint-disable-line import/no-extraneous-dependencies, import/no-unresolved
2-
import bar from 'path/bar'; // eslint-disable-line import/no-extraneous-dependencies, import/no-unresolved
2+
import bar from 'the-path/bar'; // eslint-disable-line import/no-extraneous-dependencies, import/no-unresolved
33
import test from '../../';
44

55
test('relative require', t => {

0 commit comments

Comments
 (0)