Skip to content

Commit

Permalink
Fix test section errors in README.md
Browse files Browse the repository at this point in the history
Section references were still pointing to `unit`.
  • Loading branch information
superkhau authored Jan 27, 2017
1 parent 43ae112 commit 89794cc
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,22 +32,22 @@ You DO NOT need to install in the submodules as Lerna figures it out for you.

## Tests

Run tests for all packages:
Run tests (black-box and white-box) for all packages:

```
lerna run test
```

Run unit tests for all packages:
Run black-box tests for all packages:

```
lerna run unit
lerna run black-box
```

Run unit tests for one package:
Run black-box tests for one package:

```
lerna run unit --scope loopback
lerna run black-box --scope loopback
```

Replace `unit` with `integration` or `e2e` for integration/end-to-end tests accordingly.
Replace `black-box` with `white-box` accordingly.

0 comments on commit 89794cc

Please sign in to comment.