mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-16 16:30:15 +01:00
chore(jest.config.cjs): linting
This commit is contained in:
parent
c9c77d6fdf
commit
4898f7489b
1 changed files with 5 additions and 5 deletions
|
|
@ -2,14 +2,14 @@ module.exports = {
|
|||
roots: ['<rootDir>/src'],
|
||||
testEnvironment: 'jsdom',
|
||||
testEnvironmentOptions: {
|
||||
url: 'http://localhost:3080'
|
||||
url: 'http://localhost:3080',
|
||||
},
|
||||
collectCoverage: true,
|
||||
collectCoverageFrom: [
|
||||
'src/**/*.{js,jsx,ts,tsx}',
|
||||
'!<rootDir>/node_modules/',
|
||||
'!src/**/*.css.d.ts',
|
||||
'!src/**/*.d.ts'
|
||||
'!src/**/*.d.ts',
|
||||
],
|
||||
coveragePathIgnorePatterns: ['<rootDir>/node_modules/', '<rootDir>/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': '<rootDir>/test/layout-test-utils',
|
||||
'^~/(.*)$': '<rootDir>/src/$1'
|
||||
'^~/(.*)$': '<rootDir>/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', '<rootDir>/test/setupTests.js'],
|
||||
clearMocks: true
|
||||
clearMocks: true,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue