- Notifications
You must be signed in to change notification settings - Fork0
Filtering plenary.nvim tests. Run ONLY the tests you want.
License
NotificationsYou must be signed in to change notification settings
lima1909/only.nvim
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Filteringplenary.nvim tests. RunONLY
the tests you want.
Note
The project is still in development and can change.
It's easy to run isolated tests in the current open buffer/file:
- per tags
- where the current cursor is located
packer.nvim:
use {"lima1909/only.nvim",requires= {"nvim-lua/plenary.nvim"},}
lazy.nvim:
{"lima1909/only.nvim",dependencies= {"nvim-lua/plenary.nvim"},},
User command | Description |
---|---|
:OnlyBustedFile tags [your tags] | run all tests, which contains one of the tags in the description |
:OnlyBustedFile at_cursor | run all tests, which the cursor contains |
Command::OnlyBustedFile tags thisone,other
describe("my group",function()it("first test, thisone",function()end)it("second test",function()end)it("third testi, other",function()end)end)
Runs first and third test.