react-performance-testing
react-performance-testing copied to clipboard
Cannot run the example app: jest: command not found
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!