diff options
author | John Molakvoæ <skjnldsv@protonmail.com> | 2023-06-20 12:12:56 +0200 |
---|---|---|
committer | John Molakvoæ <skjnldsv@protonmail.com> | 2023-06-21 09:20:50 +0200 |
commit | 45ecd55d89ec61771ebaf454f896344197b5cbe2 (patch) | |
tree | 9fc31a99f970e69ce8095cbb434e7d1031a2f0b9 /package.json | |
parent | 70ee8de0aba8eb3467919e0b2491af8be8869e77 (diff) | |
download | nextcloud-server-45ecd55d89ec61771ebaf454f896344197b5cbe2.tar.gz nextcloud-server-45ecd55d89ec61771ebaf454f896344197b5cbe2.zip |
feat: prepare jest coverage support
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package.json b/package.json index 5e58a7f7ee3..78367496da8 100644 --- a/package.json +++ b/package.json @@ -16,6 +16,7 @@ "lint:fix": "eslint 'apps/*/src/**/*.{vue,js}' 'core/src/**/*.{vue,js}' --fix", "test": "jest", "test:watch": "jest --watch", + "test:coverage": "jest --coverage", "test:jsunit": "karma start tests/karma.config.js --single-run", "sass": "sass --style compressed --load-path core/css core/css/ $(for cssdir in $(find apps -mindepth 2 -maxdepth 2 -name \"css\"); do if ! $(git check-ignore -q $cssdir); then echo -n \"$cssdir \"; fi; done)", "sass:watch": "sass --watch --load-path core/css core/css/ $(for cssdir in $(find apps -mindepth 2 -maxdepth 2 -name \"css\"); do if ! $(git check-ignore -q $cssdir); then echo -n \"$cssdir \"; fi; done)", |