1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/examples/with-jest
2018-09-12 15:29:17 +02:00
..
__tests__ [with-jest] Fix tests (#3395) 2017-12-05 10:43:30 -08:00
pages Using styled-jsx for with-jest example. (#1052) 2017-02-09 19:14:52 +05:30
.babelrc [with-jest] Upgrade to jest 22 and so remove raf deps (#3477) 2017-12-19 10:29:29 +01:00
jest.config.js [with-jest] Fix tests (#3395) 2017-12-05 10:43:30 -08:00
jest.setup.js [with-jest] Upgrade to jest 22 and so remove raf deps (#3477) 2017-12-19 10:29:29 +01:00
package.json Upgrade with-jest dependencies (#5149) 2018-09-12 15:29:17 +02:00
README.md #4751 - Explicitly mention install when cloning examples (#4758) 2018-07-11 23:56:15 +02:00

Deploy to now

Example app with Jest tests

How to use

Using create-next-app

Execute create-next-app with Yarn or npx to bootstrap the example:

npx create-next-app --example with-jest with-jest-app
# or
yarn create next-app --example with-jest with-jest-app

Download manually

Download the example:

curl https://codeload.github.com/zeit/next.js/tar.gz/canary | tar -xz --strip=2 next.js-canary/examples/with-jest
cd with-jest

Install it and run:

npm install
npm run dev
# or
yarn
yarn dev

Run Jest tests

npm run test
# or
yarn test

The idea behind the example

This example features:

  • An app with jest tests

A very important part of this example is the .babelrc file which configures the test environment to use babel-preset-env and configures it to transpile modules to commonjs). Learn more.