Skip to content

Commit

Permalink
Adjust NODE_PATH test to fix linting issue
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
novemberborn committed Oct 24, 2017
1 parent 1ea758f commit 1cb9d4f
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 15 deletions.
42 changes: 28 additions & 14 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion test/fixture/node-paths.js
@@ -1,5 +1,5 @@
import foo from 'nested/foo'; // eslint-disable-line import/no-extraneous-dependencies, import/no-unresolved
import bar from 'path/bar'; // eslint-disable-line import/no-extraneous-dependencies, import/no-unresolved
import bar from 'the-path/bar'; // eslint-disable-line import/no-extraneous-dependencies, import/no-unresolved
import test from '../../';

test('relative require', t => {
Expand Down

0 comments on commit 1cb9d4f

Please sign in to comment.