autobaan/jest.config.js
Collin Duncan 743cc08887
Adding some pretty stuff
Reorganized code and added some unit tests for reservations and requests
2023-05-23 15:09:09 -05:00

29 lines
No EOL
486 B
JavaScript

/*
* For a detailed explanation regarding each configuration property, visit:
* https://jestjs.io/docs/configuration
*/
module.exports = {
clearMocks: true,
collectCoverage: true,
coverageReporters: [
"text"
],
coveragePathIgnorePatterns: [
"/node_modules/"
],
coverageProvider: "v8",
moduleDirectories: [
"node_modules"
],
moduleFileExtensions: [
"js",
"ts"
],
roots: [
"<rootDir>/tests"
],
testMatch: [
"**/*.test.ts"
]
};