File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -5,3 +5,5 @@ Thumbs.db
5
5
node_modules
6
6
.idea
7
7
.vscode
8
+ cov_profile
9
+ cov_profile.lcov
Original file line number Diff line number Diff line change 2
2
"tasks" : {
3
3
"test" : " deno test" ,
4
4
"dev" : " deno test --watch test.js" ,
5
+ "coverage" : " deno test --coverage=cov_profile && deno coverage cov_profile --lcov --output=cov_profile.lcov && genhtml -o cov_profile/html cov_profile.lcov && open cov_profile/html/TinyColor/mod.js.gcov.html" ,
5
6
"serve" : " deno run --watch --allow-env --allow-net=unpkg.com,0.0.0.0 --allow-read=. demo/server.jsx" ,
6
7
"test-npm" : " npm install --prefix npm && npm test --prefix npm" ,
7
8
"build" : " deno task test && deno run --allow-env --allow-read --allow-write=. build.js && deno task test-npm" ,
You can’t perform that action at this time.
0 commit comments