mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
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:
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
.babelrcfile which configures thetestenvironment to usebabel-preset-envand configures it to transpile modules tocommonjs). Learn more.