Files
react-native-svg/jest.config.ts
Jakub Grzywacz b3b175a7fb feat: move examples to ./apps (#2507)
# Summary

Due to the large number of example apps in the repository, I decided to
change the structure and move all applications into an "apps" folder to
maintain a clear structure.
2024-10-25 16:12:23 +02:00

25 lines
545 B
TypeScript

import { Config } from '@jest/types';
const config: Config.InitialOptions = {
testPathIgnorePatterns: ['/node_modules/', '/apps/'],
preset: 'react-native',
verbose: true,
globalSetup: '<rootDir>/e2e/setupJest.ts',
globalTeardown: '<rootDir>/e2e/teardownJest.ts',
modulePathIgnorePatterns: [
'lib/typescript',
'helpers.ts|globals.d.ts|setupJest.ts|teardownJest.ts',
],
reporters: [
'default',
[
'jest-html-reporters',
{
filename: 'report.html',
},
],
],
};
export default config;