neotest-jest
neotest-jest copied to clipboard
This is basically the same PR as the one I made here adrigzr/neotest-mocha#2 which allows for user-configurable test patterns instead of having to gradually accommodate more and more patterns. ###...
I checked that #2 was closed by #51 However, it doesn't seem to support `it.each(....)` neither `test.each(...)`. Ex: ```ts it.each([1, 2, 3])('Test %s', (v) => { expect(v).toBeTruthy(); }); ``` It...
Fix for https://github.com/nvim-neotest/neotest-jest/issues/113 There are few issues with it on windows: - First issue is there a huge difference how `vim.fn.expand("%")` works on windows and unix: for file `__tests__/file.test.ts` in...
When using Lazyvim with Neotest, I'm encountering a problem where Neotest incorrectly shows tests as failed even though they pass, particularly when the Jest config is not in the root...
When there are two backticks in a test name, the test is ignored. When there is only one, the following error message is produced: ``` sh: -c: line 0: unexpected...
Regression tests for #46. Closes #46.
Hey :wave: ### Summary This PR is part of a push to get neovim plugins on [LuaRocks](https://luarocks.org/labels/neovim). See also: - [rocks.nvim](https://github.com/nvim-neorocks/rocks.nvim), a new luarocks-based plugin manager. - [this blog post](https://mrcjkb.github.io/posts/2023-01-10-luarocks-tag-release.html)....
I'm looking to help write some tests for the repo, namely to try help with the issue I raised earlier this week #113 and try find the cause of the...
Opening this issues in response to a conversation in #108. It appears since the PR #109 was merged, it's causing issues on Windows machines with test path escaping.
Tests written as ``test(`Some test`)`` are not supported (the test name is written in back ticks), it would be nice if we can support them.