diff --git a/client/jest.config.cjs b/client/jest.config.cjs index c89e8ca18e..96b7e7c79a 100644 --- a/client/jest.config.cjs +++ b/client/jest.config.cjs @@ -2,14 +2,14 @@ module.exports = { roots: ['/src'], testEnvironment: 'jsdom', testEnvironmentOptions: { - url: 'http://localhost:3080' + url: 'http://localhost:3080', }, collectCoverage: true, collectCoverageFrom: [ 'src/**/*.{js,jsx,ts,tsx}', '!/node_modules/', '!src/**/*.css.d.ts', - '!src/**/*.d.ts' + '!src/**/*.d.ts', ], coveragePathIgnorePatterns: ['/node_modules/', '/test/setupTests.js'], // Todo: Add coverageThreshold once we have enough coverage @@ -27,7 +27,7 @@ module.exports = { '\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$': 'jest-file-loader', 'layout-test-utils': '/test/layout-test-utils', - '^~/(.*)$': '/src/$1' + '^~/(.*)$': '/src/$1', }, restoreMocks: true, testResultsProcessor: 'jest-junit', @@ -35,10 +35,10 @@ module.exports = { transform: { '\\.[jt]sx?$': 'babel-jest', '\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$': - 'jest-file-loader' + 'jest-file-loader', }, transformIgnorePatterns: ['node_modules/?!@zattoo/use-double-click'], preset: 'ts-jest', setupFilesAfterEnv: ['@testing-library/jest-dom/extend-expect', '/test/setupTests.js'], - clearMocks: true + clearMocks: true, };