Files
react-native-svg/jest.config.ts
Bohdan Artiukhov 7c1602e291 feat: change folders structure (#2319)
# Summary
extract the shared example and use it in example and fabric-example, macos-example

## Test Plan

Run those apps manually.
2024-07-05 13:00:13 +02:00

15 lines
268 B
TypeScript

import { Config } from '@jest/types';
const config: Config.InitialOptions = {
testPathIgnorePatterns: [
'/node_modules/',
'/example/',
'/tests-example/',
'/fabric-example/',
],
preset: 'react-native',
verbose: true,
};
export default config;