I'm using intelliJ for React development, and want to be able to use the built in test running functionality that allows me to run individual tests from within the IDE. Currently, when I attempt to do this, the command it's running is jest <file name>. However, we don't have jest configured to run that way, instead we are running our tests using npm run test <file name>. I can build a run configuration that runs npm run test, and it will execute ALL of my tests successfully, but I want to be able to use the Run button to run individual tests etc.