Skip to content

Commit

Permalink
build: fix eslint error about missing neovim pkg in integration-tests #…
Browse files Browse the repository at this point in the history
…436

The following error was reported by eslint:

```sh
❯ npm run lint
...
/Users/mikavilpas/git/neovim-node-client/packages/integration-tests/src/factory.test.ts:1:62: Unable to resolve path to module 'neovim'. [Error/import/no-unresolved]

1 problem
```
  • Loading branch information
mikavilpas authored Nov 15, 2024
1 parent cc08e04 commit 8702dcd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion package-lock.json

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

3 changes: 2 additions & 1 deletion packages/integration-tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"c8": "^10.1.2",
"expect": "^29.7.0",
"jest-mock": "^29.7.0",
"mocha": "^10.7.3"
"mocha": "^10.7.3",
"neovim": "file:../neovim"
}
}

0 comments on commit 8702dcd

Please sign in to comment.