Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nelfimov/neotest-node-test-runner

Neotest adapter for Node.js test runner
https://github.com/nelfimov/neotest-node-test-runner

Last synced: about 1 month ago
JSON representation

Neotest adapter for Node.js test runner

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"] = {} },
},
},
}
```