You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use Windows and Neovim 0.8, and I would love to use this plugin with it.
When I try to run my tests through require('neotest').run.run(), then the test cannot be found. The output is as follows:
> jest {...} C:\{...}\component.spec.ts
No tests found, exiting with code 1
Run with `--passWithNoTests` to exit with code 0
In C:\{...}\frontend
38 files checked.
testMatch: **/__tests__/**/*.[jt]s?(x), **/?(*.)+(spec|test).[tj]s?(x) - 8 matches
testPathIgnorePatterns: \\node_modules\\ - 38 matches
testRegex: - 0 matches
Pattern: C:\{...}\component.spec.ts - 0 matches
When I manually run the test in the terminal, then the result is the same. But when I change the \s in the command to /s, then the tests can be found and they succeed:
> jest {...} C:/{...}/component.spec.ts
Determining test suites to run...
ngcc-jest-processor: running ngcc
PASS src/component.spec.ts
It would be nice to fix this. How can I make this work?
Thank you for your support :)
The text was updated successfully, but these errors were encountered:
Have 👋, thank you for this nice plugin!
I use Windows and Neovim 0.8, and I would love to use this plugin with it.
When I try to run my tests through
require('neotest').run.run()
, then the test cannot be found. The output is as follows:When I manually run the test in the terminal, then the result is the same. But when I change the
\
s in the command to/
s, then the tests can be found and they succeed:It would be nice to fix this. How can I make this work?
Thank you for your support :)
The text was updated successfully, but these errors were encountered: