chore(jest.config.cjs): linting

This commit is contained in:
Danny Avila 2023-07-27 10:10:21 -04:00 committed by Danny Avila
parent c9c77d6fdf
commit 4898f7489b

View file

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