We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22fd2bf commit ad98fb0Copy full SHA for ad98fb0
.gitignore
@@ -0,0 +1,2 @@
1
+deno.lock
2
+.coverage
deno.jsonc
@@ -1,8 +1,9 @@
{
"lock": false,
3
"tasks": {
4
- "test": "deno test --no-lock --unstable -A --doc --parallel --shuffle",
5
- "check": "deno check --no-lock --unstable $(find . -name '*.ts')",
6
- "upgrade": "deno run --no-lock -A https://deno.land/x/udd/main.ts $(find . -name '*.ts')"
+ "test": "deno test --unstable -A --doc --parallel --shuffle --coverage=.coverage",
+ "check": "deno check --unstable $(find . -name '*.ts')",
+ "coverage": "deno coverage --unstable .coverage",
7
+ "upgrade": "deno run -A https://deno.land/x/udd/main.ts $(find . -name '*.ts')"
8
}
9
0 commit comments