Skip to content

Commit

Permalink
remove linting from the test script (#394)
Browse files Browse the repository at this point in the history
* remove lint from test

* use test/**/*.test.js

* add .taprc

* format

* format again

* remove quotes
  • Loading branch information
gurgunday committed Jul 27, 2023
1 parent e505f56 commit e29e22e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
2 changes: 2 additions & 0 deletions .taprc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
files:
- test/**/*.test.js
11 changes: 5 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,13 @@
"main": "index.js",
"types": "types/index.d.ts",
"scripts": {
"coverage": "npm run test:unit -- --coverage-report=html",
"lint": "standard | snazzy",
"lint:fix": "standard --fix",
"unit": "tap test/*.test.js",
"typescript": "tsd",
"test": "npm run lint && npm run unit && npm run typescript",
"example": "node example/server.js",
"coverage": "tap --cov --coverage-report=html test",
"coveralls": "tap test/*test.js test/*/*.test.js --cov"
"test": "npm run test:unit && npm run test:typescript",
"test:typescript": "tsd",
"test:unit": "tap",
"example": "node example/server.js"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit e29e22e

Please sign in to comment.