Tags: nvim-neotest/neotest
Tags
feat(run): augment args Allow users to augment the arguments to all tests being run from a singular function. ```lua local nio = require("nio") neotest.setup({ run = { augment = function(tree, args) local name = nio.ui.input({ prompt = "What is your name?" }) args.env = { USER_NAME = name } return args end, }, }) ``` See #431
refactor(window): replace deprecated usage nvim_buf_set_option (#433) this is now deprecated in 0.10 and can be replaced with nvim_set_option_value per https://neovim.io/doc/user/deprecated.html#deprecated-0.10 Fixes: N/A Co-authored-by: Cody Mikol <[email protected]>
PreviousNext