Skip to content

Latest commit

 

History

History
 
 

with-jest

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

Deploy to now

Example app with jest tests

How to use

Download the example or clone the repo:

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

Install it and test:

npm install
npm 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.