Replies: 4 comments 3 replies
-
@Sevenhero thanks for trying the extension. If you just want the extension to run |
Beta Was this translation helpful? Give feedback.
-
hi @Sevenhero this is an interesting idea, unfortunately right now we only support 1 jest run per workspace. You could maybe hack around to create a separate workspace with a different config... 🤔 |
Beta Was this translation helpful? Give feedback.
-
to clarify, I mean to create a multiroot workspace with a separate folder (let's call it "e2e"), then you can customize this 'e2e' folder with something like: // in e2e/.vscode/settings.json
{
...
"jest.rootPath":"../",
"jest.jestCommandLine": "yarn test:e2e"
} You might need to adjust something else, just some idea if you want to try... let me know if you got stuck. |
Beta Was this translation helpful? Give feedback.
-
You should create the workspace folder for the directory where the e2e Hope this help. |
Beta Was this translation helpful? Give feedback.
-
This is the first time I ever wrote something here in github :)
Hello :) I really like your extension.
I run e2e tests with jest via terminal so in the "package.json"
"test:e2e": "jest --config ./test/jest-e2e.json"
my question would be : can I somehow configure that the extension also picks up these files?
their naming is like *.e2e-spec.ts
thank you :)
Beta Was this translation helpful? Give feedback.
All reactions