virtualtabletop-docker/jest.config.mjs

14 lines
372 B
JavaScript
Raw Normal View History

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"],
setupFilesAfterEnv: ['<rootDir>/tests/client/setup.js'],
testEnvironment: "jest-environment-jsdom-global",
verbose: true
2020-12-28 23:34:54 +08:00
};