summaryrefslogtreecommitdiff
path: root/jest.config.js
diff options
context:
space:
mode:
authorIvan Dolgov <ivan@dolgov.fi>2018-09-22 00:55:11 +0300
committerIvan Dolgov <ivan@dolgov.fi>2018-09-22 00:55:11 +0300
commit05b6b72104206468b50743026981e9d3c4974c61 (patch)
tree176333ebef1b58b82cb4a17a3f7bd571455c4c7f /jest.config.js
parente2cf702d339d95600001f60993252b4d8054f6d6 (diff)
downloadickui-05b6b72104206468b50743026981e9d3c4974c61.tar.gz
Configure initial setupivan/setup
Diffstat (limited to 'jest.config.js')
-rw-r--r--jest.config.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/jest.config.js b/jest.config.js
new file mode 100644
index 0000000..2429ecb
--- /dev/null
+++ b/jest.config.js
@@ -0,0 +1,8 @@
+const config = {
+ verbose: false,
+ collectCoverage: true,
+ collectCoverageFrom: ['src/**/*.js'],
+ coverageReporters: ['text', 'html'],
+};
+
+module.exports = config;