style: prefix all test commands with "test-"

It's a style I follow in all my packages...

- test
- test-node
- test-browser
- ...
This commit is contained in:
Feross Aboukhadijeh
2016-10-03 02:40:37 -07:00
parent 3f79c90868
commit 59286ff3cb
2 changed files with 2 additions and 2 deletions

View File

@@ -65,7 +65,7 @@ $ npm test
### Run integration tests
```
$ npm run integration-test
$ npm run test-integration
```
The integration tests use Spectron and Tape. They click through the app, taking screenshots and comparing each one to a reference. Why screenshots?