-
Hi! Thank you for this awesome plugin. When I run a test via testables, I get only the failure message, but not the output in a hover message. How would I go about getting the test output as well? Screen.Recording.2024-06-21.at.7.45.30.AM.movMy config is on the left in the video, and the test is on the right. Relevant config pasted below: require("lazy").setup({
...,
{
'mrcjkb/rustaceanvim',
version = '^4', -- Recommended
lazy = false, -- This plugin is already lazy
},
...
vim.keymap.set("n", "<leader>t", function() vim.cmd.RustLsp('testables') end, { desc = "(rust) see local testables" })
vim.keymap.set("n", "<leader>T", function() vim.cmd.RustLsp { 'testables', bang = true } end, { desc = "(rust) execute previous test command" })
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hey 👋 In neovim 0.10, rustaceanvim defaults to the |
Beta Was this translation helpful? Give feedback.
Hey 👋
In neovim 0.10, rustaceanvim defaults to the
background
executor for tests (see:h rustaceanvim.config
).I've just reverted it so that it defaults to the
termopen
executor (which I was planning to do soon anyway), which runs the tests in the terminal and displays all the output.