https://github.com/nelfimov/neotest-node-test-runner
Neotest adapter for Node.js test runner
https://github.com/nelfimov/neotest-node-test-runner
lazyvim neovim neovim-plugin node-test-runner nodejs
Last synced: 3 months 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 (6 months ago)
- Default Branch: master
- Last Pushed: 2024-12-04T07:36:57.000Z (6 months ago)
- Last Synced: 2025-02-01T19:12:14.681Z (4 months ago)
- Topics: lazyvim, neovim, neovim-plugin, node-test-runner, nodejs
- Language: Lua
- Homepage:
- Size: 7.81 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- 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"] = {} },
},
},
}
```