README.md 1.0 KB
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 7 8
## How to use

### Using `create-next-app`

9
Execute [`create-next-app`](https://github.com/zeit/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 已提交
10 11

```bash
12
npm init next-app --example with-mocha with-mocha-app
S
Stephen Sauceda 已提交
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
# or
yarn create next-app --example with-mocha with-mocha-app
```

### Download manually

Download the example:

```bash
curl https://codeload.github.com/zeit/next.js/tar.gz/canary | tar -xz --strip=2 next.js-canary/examples/with-mocha
cd with-mocha
```

Install it and run:

```bash
npm install
npm run dev
# or
yarn
yarn dev
```

## Run Mocha tests

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

44
> 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/zeit/next.js/issues/2895).