Files
notifications-admin/tests/javascripts/jest.config.js
2024-06-05 11:25:15 -04:00

18 lines
372 B
JavaScript

module.exports = {
collectCoverage: true,
coverageDirectory: './coverage',
coverageThreshold: {
global: {
branches: 75,
functions: 90,
lines: 90,
statements: 90,
}
},
setupFiles: ['./support/setup.js', './support/jest.setup.js'],
testEnvironment: 'jsdom',
testEnvironmentOptions: {
url: 'https://beta.notify.gov',
},
};