Open tweiss777 opened 3 months ago
Hello @tweiss777, did you manage to make this work? Have you tried setting jest_test_discovery
?
require('neotest-jest')({
...,
jest_test_discovery = true,
}),
https://github.com/nvim-neotest/neotest-jest?tab=readme-ov-file#parameterized-tests
Actually I have the same issue, even with jest_test_discovery
set, the tests are not displayed as expected
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:
I can see the tests running fine.
However, if I run the following test:
I don't see the result if I run it via Neo-Test Jest, and it gives me a blue icon in the test explorer. It will work if I run the test via CLI.
Below is my lua config with lazy for Neotest jest showing how I configured it.