On my package.json
I have this script
"test": "hardhat test"
.
I would like to make another one to only run tests from a subfolder, and not the entire test suite.
Something like "test:single": "hardhat test ./tests/subfolder/${runThisOne}"
and call it like yarn test:single coolTest
which would result in yarn test:single ./tests/subfolder/coolTest
. Is this possible?