Currently, I have been utilizing PyCharm to code in typescript. To run tests in the integration directory, I execute npm run test:integration
. However, I am now looking to debug the tests. The directory structure looks like this:
my_project
/src
/tests
/integration
For running tests, I am using Jest. I have configured a new Jest setup, but unfortunately, it is not working and showing an error message:
No tests found In ~/PycharmProjects/my_project/src
Even though the test directory is defined as:
~/PycharmProjects/my_project/tests/integration
What steps should I take to resolve this issue?