My background is in Java and Maven, where I am accustomed to running multiple test files together and sequentially using a command like:
mvn '-Dtest=com.my.directory.tests.*Test' test
In this setup, all my test files are named to end with the word Test.
However, I am currently working on writing pact tests in Javascript, where my test files are named to end with .pact.js. I am struggling to find an equivalent npm command to run them all one after the other.
https://i.sstatic.net/BMwt6.png
Any help would be greatly appreciated.