Files

Example app with Mocha tests

This example features an app with Mocha tests.

Deploy your own

Deploy with Vercel

How to use

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

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

Run Mocha tests

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.