summaryrefslogtreecommitdiff
path: root/node_modules/express-handlebars/jest.config.js
blob: 203605130c0a2cdc8d140b2de10e402562e29e06 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
module.exports = {
	restoreMocks: true,
	clearMocks: true,
	// collectCoverage: true,
	collectCoverageFrom: [
		"lib/**/*.js",
		"!**/node_modules/**",
	],
	coverageDirectory: "coverage",
	/*
	coverageThreshold: {
		global: {
			branches: 100,
			functions: 100,
			lines: 100,
			statements: 100,
		},
	},
	*/
	testRegex: /\.test\.jsx?/.source,
};