Replies: 1 comment
-
@Suniron I think I've finally made it work! Please note it is far from being pretty and you will have to add all your individual packages to the In your root directory, add or edit {
"jest.autoRun": "off",
"jest.jestCommandLine": "pnpm test --",
"jest.rootPath": ".",
"jest.debugMode": true,
"jest.virtualFolders": [
{
"name": "packages/your-package-name",
"jestCommandLine": "cd packages/your-package-name && pnpm test --"
}
]
} Notes:
Good luck 😄 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm looking for a configuration to put in my
.vscode/settings.json
.I have a monorepo powered by
Turborepo
, so my tests are inapps/*/__tests__
andpackages/*/__tests__
and i can't find the config to use the vscode-jest extension in my project.All tests works in CLI ;).
Thank's :)
Beta Was this translation helpful? Give feedback.
All reactions