README.md 759 字节
Newer Older
S
Stephen Sauceda 已提交
1 2
# Example app with Mocha tests

3 4
This example features an app with Mocha tests.

S
Stephen Sauceda 已提交
5 6
## How to use

7
Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app) with [npm](https://docs.npmjs.com/cli/init) or [Yarn](https://yarnpkg.com/lang/en/docs/cli/create/) to bootstrap the example:
S
Stephen Sauceda 已提交
8 9

```bash
10
npx create-next-app --example with-mocha with-mocha-app
S
Stephen Sauceda 已提交
11 12 13 14 15 16 17 18 19 20 21 22
# or
yarn create next-app --example with-mocha with-mocha-app
```

## Run Mocha tests

```bash
npm run test
# or
yarn test
```

23
> 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](https://github.com/vercel/next.js/issues/2895).