We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bd856e commit 485973fCopy full SHA for 485973f
.gitignore
@@ -47,4 +47,5 @@ working
47
/dist/
48
49
# nyc coverage output
50
-.nyc_output/
+.nyc_output/
51
+coverage/
package.json
@@ -5,7 +5,9 @@
5
"main": "src/index.ts",
6
"scripts": {
7
"test": "npm run tsc && ts-node test/test.ts",
8
- "test:coverage": "nyc npm run test",
+ "cover": "nyc npm run test",
9
+ "cover:report": "nyc report --reporter=html",
10
+ "cover:genreport": "nyc npm run test && nyc report --reporter=html",
11
"dev": "nodemon",
12
"dev:bash": "nodemon -x 'npm test ; npm start'",
13
"postgres:docker": "docker run --rm -p 5432:5432 -e POSTGRES_USER=ci_db_user -e POSTGRES_PASSWORD=ci_db_pass postgres:alpine",
0 commit comments