1
0
mirror of https://github.com/matt-fidd/stratos.git synced 2026-01-01 22:19:26 +00:00

Rewrite jest config to json format

This commit is contained in:
2022-01-24 09:51:51 +00:00
parent 51db80f04c
commit 3675533401
2 changed files with 9 additions and 14 deletions

View File

@@ -1,14 +0,0 @@
/*
* For a detailed explanation regarding each configuration property, visit:
* https://jestjs.io/docs/configuration
*/
module.exports = {
clearMocks: true,
collectCoverage: true,
coverageDirectory: 'coverage',
coverageProvider: 'v8',
setupFilesAfterEnv: [
'jest-extended/all'
]
};

9
jest.config.json Normal file
View File

@@ -0,0 +1,9 @@
{
"clearMocks": true,
"collectCoverage": true,
"coverageDirectory": "coverage",
"coverageProvider": "v8",
"setupFilesAfterEnv": [
"jest-extended/all"
]
}