mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-05 19:03:30 -05:00
# Conflicts: # app/assets/sass/uswds/_data-visualization.scss # app/assets/sass/uswds/styles.scss # app/templates/views/dashboard/dashboard.html # app/templates/views/dashboard/template-statistics.html # gulpfile.js # package-lock.json
24 lines
528 B
JavaScript
24 lines
528 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',
|
|
},
|
|
transform: {
|
|
'^.+\\.js$': 'babel-jest',
|
|
},
|
|
transformIgnorePatterns: [
|
|
'/node_modules/' // Add any other folders you want Jest to ignore
|
|
],
|
|
};
|