nvim-neotest / neotest-jest

MIT License
116 stars 79 forks source link

It seems to still not support it.each() and test.each(), works normally with `describe.each()` #118

Open carlos-algms opened 4 months ago

carlos-algms commented 4 months ago

I checked that #2 was closed by #51 However, it doesn't seem to support it.each(....) neither test.each(...).

Ex:

it.each([1, 2, 3])('Test %s', (v) => {
  expect(v).toBeTruthy();
});

It doesn't only not list this test, but also completely fails to list the tests on the summary pane when opening a file that contains .each().

Could that be because it stopped working due to a dependency's breaking-change? like treesitter or neotest itself?