'use strict'; const babelConfig = require('./babel.config.js'); module.exports = { coveragePathIgnorePatterns: [ '/node_modules/', '/packages/react-native-web/src/vendor/' ], fakeTimers: { enableGlobally: true }, modulePathIgnorePatterns: [ '/packages/benchmarks/', '/packages/react-native-web-docs/', '/packages/react-native-web-examples/', '/packages/react-native-web/dist/' ], rootDir: process.cwd(), roots: ['/packages'], snapshotFormat: { printBasicPrototype: false }, testEnvironment: 'node', testMatch: ['**/__tests__/**/?(*-)+(spec|test).node.[jt]s?(x)'], transform: { '\\.[jt]sx?$': ['babel-jest', babelConfig()] } };