https://github.com/nelfimov/neotest-node-test-runner
Neotest adapter for Node.js test runner
https://github.com/nelfimov/neotest-node-test-runner
lazyvim neotest neotest-adapter neovim neovim-plugin node-test-runner nodejs
Last synced: about 1 month ago
JSON representation
Neotest adapter for Node.js test runner
- Host: GitHub
- URL: https://github.com/nelfimov/neotest-node-test-runner
- Owner: Nelfimov
- License: mit
- Created: 2024-12-04T06:00:41.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-10-25T11:49:23.000Z (8 months ago)
- Last Synced: 2025-10-25T13:20:58.736Z (8 months ago)
- Topics: lazyvim, neotest, neotest-adapter, neovim, neovim-plugin, node-test-runner, nodejs
- Language: Lua
- Homepage:
- Size: 13.7 KB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Neotest Node.js test runner
Neotest adapter for [Node.js test runner](https://nodejs.org/api/test.html). Runs with following flags:
- `--experimental-strip-types`,
- `--experimental-transform-types`,
- `--no-warnings=ExperimentalWarning`,
## Requirements
- `Node.js` >= 22
- [Neotest](https://github.com/nvim-neotest/neotest)
## Setup
### LazyVim
```lua
return {
{
"nvim-neotest/neotest-plenary",
},
{
"nvim-neotest/neotest",
dependencies = { "Nelfimov/neotest-node-test-runner" },
opts = {
adapters = { "neotest-node-test-runner" },
},
},
}
```