react-performance-testing icon indicating copy to clipboard operation
react-performance-testing copied to clipboard

Cannot run the example app: jest: command not found

Open jsamr opened this issue 4 years ago • 0 comments

cd example
yarn install
yarn test
$ jest
/bin/sh: line 1: jest: command not found

Try install jest:

yarn add jest
yarn test
$ jest
TypeError: Jest: a transform must export something.

Try install jest@^26:

yarn add jest@^26
yarn test

Now it works!

jsamr avatar Jul 12 '21 23:07 jsamr