2020-12-28 23:34:54 +08:00
|
|
|
/*
|
|
|
|
* For a detailed explanation regarding each configuration property, visit:
|
|
|
|
* https://jestjs.io/docs/en/configuration.html
|
|
|
|
*/
|
|
|
|
|
2020-12-29 19:23:09 +08:00
|
|
|
export default {
|
2020-12-28 23:34:54 +08:00
|
|
|
coverageDirectory: "coverage",
|
|
|
|
coverageProvider: "v8",
|
2021-01-03 20:01:41 +08:00
|
|
|
projects: ["<rootDir>/client"],
|
2021-01-07 21:36:30 +08:00
|
|
|
setupFilesAfterEnv: ['<rootDir>/tests/client/setup.js'],
|
|
|
|
testEnvironment: "jest-environment-jsdom-global",
|
|
|
|
verbose: true
|
2020-12-28 23:34:54 +08:00
|
|
|
};
|