aboutsummaryrefslogtreecommitdiffstats
path: root/jest.config.js
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2022-05-28 21:06:37 +0200
committerLibravatar Kristóf Marussy <kristof@marussy.com>2022-05-29 22:39:49 +0200
commita310fc4dde89c6b09a1da4c67dcefb87f2864935 (patch)
tree30d6b66472f08d6e6de80ba38888d6818ad2fa2a /jest.config.js
parentrefactor: use undefined constant (diff)
downloadsophie-a310fc4dde89c6b09a1da4c67dcefb87f2864935.tar.gz
sophie-a310fc4dde89c6b09a1da4c67dcefb87f2864935.tar.zst
sophie-a310fc4dde89c6b09a1da4c67dcefb87f2864935.zip
test(main): ConfigFile integration test
Signed-off-by: Kristóf Marussy <kristof@marussy.com>
Diffstat (limited to 'jest.config.js')
-rw-r--r--jest.config.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/jest.config.js b/jest.config.js
index be24800..340c6dc 100644
--- a/jest.config.js
+++ b/jest.config.js
@@ -1,7 +1,11 @@
1/** @type {import('@jest/types').Config.InitialOptions} */ 1/** @type {import('@jest/types').Config.InitialOptions} */
2export default { 2export default {
3 projects: ['<rootDir>/packages/*/jest.config.js'], 3 projects: ['<rootDir>/packages/*/jest.config.js'],
4 collectCoverageFrom: ['**/*.{ts,tsx}', '!**/__fixtures__/**/*'], 4 collectCoverageFrom: [
5 '**/*.{ts,tsx}',
6 '**/*.{test,spec}.{ts,tsx}',
7 '!**/__fixtures__/**/*',
8 ],
5 /** @type {'v8'} */ 9 /** @type {'v8'} */
6 coverageProvider: 'v8', 10 coverageProvider: 'v8',
7 /** @type {['cobertura', 'text']} */ 11 /** @type {['cobertura', 'text']} */