mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-06 03:13:42 -05:00
18 lines
362 B
JavaScript
18 lines
362 B
JavaScript
module.exports = {
|
|
collectCoverage: true,
|
|
coverageDirectory: './coverage',
|
|
coverageThreshold: {
|
|
global: {
|
|
branches: 75,
|
|
functions: 90,
|
|
lines: 90,
|
|
statements: 90,
|
|
}
|
|
},
|
|
setupFiles: ['./support/setup.js'],
|
|
testEnvironment: 'jsdom',
|
|
testEnvironmentOptions: {
|
|
url: 'https://www.notifications.service.gov.uk',
|
|
},
|
|
};
|