Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/smjonas/live-tests-busted.nvim

Show live test results for Lua development in Neovim.
https://github.com/smjonas/live-tests-busted.nvim

Last synced: about 2 months ago
JSON representation

Show live test results for Lua development in Neovim.

Awesome Lists containing this project

README

        

# live_tests_busted.nvim

This is just quickly hacked together based on TJ's video about integrated test results in Neovim: https://www.youtube.com/watch?v=cf72gMBrsI0

Currently configured to work with vusted, a wrapper around the Lua testing framework busted (https://github.com/notomo/vusted).

## Installation
```lua
use {
"smjonas/live-tests-busted.nvim",
config = function()
require("live_tests_busted")
end,
}
```

## Usage
Requires [vusted](https://github.com/notomo/vusted).
Save a lua file that ends with `spec.lua` and you should see the diagnostics when you save the file.