mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-06 11:23:48 -05:00
24 lines
501 B
JavaScript
24 lines
501 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://beta.notify.gov',
|
|
},
|
|
transform: {
|
|
'^.+\\.js$': 'babel-jest',
|
|
},
|
|
transformIgnorePatterns: [
|
|
'/node_modules/' // Add any other folders you want Jest to ignore
|
|
],
|
|
};
|