Skip to content

Commit

Permalink
style: prefix all test commands with "test-"
Browse files Browse the repository at this point in the history
It's a style I follow in all my packages...

- test
- test-node
- test-browser
- ...
  • Loading branch information
feross committed Oct 3, 2016
1 parent 3f79c90 commit 59286ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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?
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -99,12 +99,12 @@
"build": "buble src --output build",
"clean": "node ./bin/clean.js",
"gh-release": "gh-release",
"integration-test": "npm run build && node ./test",
"open-config": "node ./bin/open-config.js",
"package": "node ./bin/package.js",
"prepublish": "npm run build",
"start": "npm run build && electron .",
"test": "standard && depcheck --ignores=buble,lodash.merge,nodemon,gh-release --ignore-dirs=build,dist && node ./bin/extra-lint.js",
"test-integration": "npm run build && node ./test",
"update-authors": "./bin/update-authors.sh",
"watch": "nodemon --exec \"npm run start\" --ext js,pug,css --ignore build/ --ignore dist/"
}
Expand Down

0 comments on commit 59286ff

Please sign in to comment.