mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-02-23 10:04:18 -08:00
* using the higher-level react-testing-library, and regenerating snapshot - renders real DOM elements * Basic e2e testing with Cypress, following the guide here: https://www.gatsbyjs.com/docs/how-to/testing/end-to-end-testing/ ; needed to install cypress-local to avoid jest-cypress collision * Adding accessibility testing support and basic a11y tests * adding failure logging * Adding nightly test run * Fix misc stuff from lighthouse (#81) * Removing local-cypress, relying instead on a combination of type reference and eslint-plugin-cypress; adding cypress to jest ignore paths to avoid conflict - `npm test` is now jest-only, use `npm run test:e2e` to run cypress tests * updating comment to clarify timezone
22 lines
738 B
JavaScript
22 lines
738 B
JavaScript
module.exports = {
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'jsdom',
|
|
transform: {
|
|
'^.+\\.[jt]sx?$': '<rootDir>/jest-preprocess.js',
|
|
},
|
|
moduleNameMapper: {
|
|
'.+\\.(css|styl|less|sass|scss)$': `identity-obj-proxy`,
|
|
// eslint-disable-next-line max-len
|
|
'.+\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$': `<rootDir>/__mocks__/file-mock.js`,
|
|
},
|
|
testPathIgnorePatterns: [`node_modules`, `\\.cache`,
|
|
`<rootDir>/public`,
|
|
`<rootDir>/cypress`],
|
|
transformIgnorePatterns: [`node_modules/(?!(gatsby)/)`],
|
|
globals: {
|
|
__PATH_PREFIX__: ``,
|
|
},
|
|
testURL: `http://localhost`,
|
|
setupFiles: [`<rootDir>/loadershim.js`],
|
|
setupFilesAfterEnv: ['<rootDir>/setup-test-env.js'],
|
|
};
|