I am using PyCharm for coding in typescript. I can run npm run test:integration
for running tests in the integration directory. However, I want to debug the tests.The skeleton is:
my_project /src /tests /integration
I am using Jest for the tests. So I added a new Jest configuration, but it doesn't run with error
No tests found In ~/PycharmProjects/my_project/src
Although I put in the Test directory: ~/PycharmProjects/my_project/tests/integration
What should I config?