Files
react-native-svg/jest.config.ts
Stephen Pittman 2a44346049 Fix many JS vulns, fix tests (#1775)
* fix: lint problem

* fix: ignore malformed JSON file for FlowJS

* fix: add missing @types/jest package

* chore: update TypeScript version

* chore: update all eslint deps

Includes updating and installing missing/wrong peer deps

* chore: update all Jest deps

* chore: replace Jest config with jest.config.ts

* fix: make root Jest tests ignore Example folders

* chore: update css-select dep

* chore: update css-tree to latest 1.x version

2.x broke tests so left a 1.x

* chore: upgrade ansi-regex to close JS vuln

* chore: upgrade ejs to close JS vuln

* chore: upgrade async to close JS vuln

* chore: upgrade simple-plist to close JS vuln
2022-07-14 16:25:55 +02:00

10 lines
226 B
TypeScript

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