Skip to content

Latest commit

 

History

History
42 lines (30 loc) · 954 Bytes

File metadata and controls

42 lines (30 loc) · 954 Bytes

Example app with Jest tests inside a NextJS TypeScript app

This example shows a configuration and several examples for a running Jest tests in a NextJS TypeScript app.

How to use

Using create-next-app

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

npm init next-app --example with-jest-typescript with-jest-typescript-app
# or
yarn create next-app --example with-jest-typescript with-jest-typescript-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-typescript
cd with-jest-typescript

Install it and run:

npm install
npm run dev
# or
yarn
yarn dev

Run Jest tests

npm run test
# or
yarn test