Jest
Run Individual Tests with Jest
jest --runInBand -t "My Test Name"
If running that command results in a command not found: jest
error, it may be necessary to preface the command with npm
or yarn
:
# npm
npm jest --runInBand -t "My Test Name"
# yarn
yarn jest --runInBand -t "My Test Name"
Published