``` 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!