Back to Next Js

Example app with Mocha tests

examples/with-mocha/README.md

16.2.51.0 KB
Original Source

Example app with Mocha tests

This example features an app with Mocha tests.

Deploy your own

How to use

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

bash
npx create-next-app --example with-mocha with-mocha-app
bash
yarn create next-app --example with-mocha with-mocha-app
bash
pnpm create next-app --example with-mocha with-mocha-app

Run Mocha tests

bash
npm run test
# or
yarn test
# or
pnpm test

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.