Files
LensApp/jest.config.js
2026-04-18 15:03:47 +05:30

12 lines
389 B
JavaScript

module.exports = {
preset: 'react-native',
testMatch: [
'**/__tests__/**/*.test.{ts,tsx}',
'**/?(*.)+(spec|test).{ts,tsx}',
],
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json'],
transformIgnorePatterns: [
'node_modules/(?!(react-native|@react-native|react-native-document-scanner-plugin|react-native-fs|react-native-html-to-pdf|react-native-share)/)',
],
};