774 B
774 B
jest-expo
A Jest preset to painlessly test your Expo apps.
If you have problems with the code in this repository, please file issues & bug reports at https://github.com/expo/expo. Thanks!
Installation
-
yarn add jest-expo --devornpm i jest-expo --save-dev -
Add the following config to
package.json:"scripts": { "test": "node_modules/.bin/jest" }, "jest": { "preset": "jest-expo" } -
Create a
__tests__directory anywhere you like and aExample-test.jsfile inside of it, and add this code:it('works', () => { expect(1).toBe(1); }); -
Run
npm testand it should pass