neotest-jest
neotest-jest copied to clipboard
Replace the deprecated vim.tbl_flatten function (which will be removed with Neovim 0.13) by using new the iter() interface that came in Neovim 0.10.
Whenever I run below configuration: ``` { 'nvim-neotest/neotest', dependencies = { 'nvim-neotest/nvim-nio', 'nvim-lua/plenary.nvim', 'antoinemadec/FixCursorHold.nvim', 'nvim-treesitter/nvim-treesitter', 'Issafalcon/neotest-dotnet', 'nvim-neotest/neotest-jest', }, config = function() require('neotest').setup { adapters = { require 'neotest-jest', require 'neotest-dotnet',...
Hi, I have tried the default config from lazyvim distribution. Normally, neotest and jest works fine I can use any functionality. However, whenever I try to change the name from...
A new repo I'm working on is using [@swc/jest](https://swc.rs/docs/usage/jest) instead of the normal jest package so I was hoping to be able to still use this plugin to run the...
When I try to run a test, in run script auto add --forceExit, with this flag my async code without await does not finished
I'm trying to run some unit tests using neotest-jest, and I can't see the test results for some reason when using describe.each. When running a test, such as: ``` import...