mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-15 00:53:23 +01:00
c129ac3076
* Edit max line length * oh god * ts also * rebuild tgui * Format again after conflicts resolving * Me rebuild tgui * this is minified * this is removed * rebuild tgui
12 lines
412 B
JavaScript
12 lines
412 B
JavaScript
module.exports = {
|
|
roots: ['<rootDir>/packages'],
|
|
testMatch: ['<rootDir>/packages/**/__tests__/*.{js,ts,tsx}', '<rootDir>/packages/**/*.{spec,test}.{js,ts,tsx}'],
|
|
testEnvironment: 'jsdom',
|
|
testRunner: require.resolve('jest-circus/runner'),
|
|
transform: {
|
|
'^.+\\.(js|cjs|ts|tsx)$': require.resolve('babel-jest'),
|
|
},
|
|
moduleFileExtensions: ['js', 'cjs', 'ts', 'tsx', 'json'],
|
|
resetMocks: true,
|
|
};
|