@defra/hapi-gapi
Version:
hapi plugin to enable server-side google analytics platform integration
25 lines (24 loc) • 449 B
JavaScript
module.exports = {
collectCoverage: true,
collectCoverageFrom: [
'**/*.js',
'!**/*.test.js'
],
coverageDirectory: 'coverage',
coverageReporters: [
'text-summary',
'lcov'
],
coveragePathIgnorePatterns: [
'<rootDir>/node_modules/',
'<rootDir>/coverage/',
'<rootDir>/test/',
'<rootDir>/jest.config.js'
],
modulePathIgnorePatterns: [
'node_modules'
],
testEnvironment: 'node',
testPathIgnorePatterns: [],
verbose: true,
}