neotest-jest
neotest-jest copied to clipboard
Support parsing results from storybook tests, and linking to story definitions. Currently the result shows up as failed:
DAP support?
Is there any DAP support? Does this plug-in intentionally target the `pwa-node` adapter? When running the dap strategy it's saying that it's looking for the `pwa-node` adapter -- is this...
## Description When trying to run Neotest in watch mode, cannot view the output of the test, event the test is finished, whether the test pass or failed. Seems it's...
How can I override this settings to enable coverage? https://github.com/nvim-neotest/neotest-jest/blob/ae559fbd405084ee38dd711eede6d74f3dc1d463/lua/neotest-jest/init.lua#L402-L410 I don't know much about lua but isn't the 2nd argument overwriting the first one in `list_extend` ? Do we...
https://github.com/nvim-neotest/neotest-jest/blob/e60280f53ef9f84fd827aecae1e2f732ba4326b1/lua/neotest-jest/init.lua#L359-L365 I have set a custom `jestCommand` in my adapter configuration, something specific to my project like `yarn run custom-script ...`. Now when I one single test, the test name...
I noticed the behavior of parser to discover the position of test only supports a string in `describe(string)`. It will not work if we have the real class name like...
When running against a file `require("neotest").run.run(path)`, the file type is `file` and we should filter the test runner to target only that file (else the pattern will be `--testNamePattern='.*'` ==...
When running the suite test it does not work as expected: ```lua require("neotest").run.run({ suite = true }) ``` One possible fix could be: ```diff diff --git a/lua/neotest-jest/init.lua b/lua/neotest-jest/init.lua index 8cde6e2..f932bf2...
Hello there! My neovim/terminal gets absolutely bricked when I setup `neotest-jest`. I've identified the source of the issue as being the `jest-util.getJestCommand` function. This only happens when I am in...