In my test folder, there are multiple files containing various test suites and test cases. Click here to see the test files. When I run the npm test
command, it executes all the files in sequence. Is there a way to run only one specific test file?
I attempted to use the
npm test -- --grep "file name"
command, but it did not produce the desired result. This command seems to only work with the names of test suites or test cases.