Skip to content

Commit

Permalink
Move testee to its own npm script
Browse files Browse the repository at this point in the history
This allows the tests to be run without running the linter, which is sometimes useful during development.
  • Loading branch information
Chasen Le Hara authored and chasenlehara committed Dec 15, 2021
1 parent 1bc9002 commit c23547b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"main": "",
"scripts": {
"lint": "standard --fix --env mocha",
"test": "npm run lint && testee --reporter Spec --browsers firefox tests/index.html",
"test": "npm run lint && npm run testee",
"testee": "testee --reporter Spec --browsers firefox tests/index.html",
"preversion": "npm test",
"release:pre": "npm version prerelease && npm publish --tag=pre",
"release:patch": "npm version patch && npm publish",
Expand Down

0 comments on commit c23547b

Please sign in to comment.