mirror of https://github.com/facebook/jest.git
8 lines
286 B
JavaScript
8 lines
286 B
JavaScript
const {resolve} = require('path');
|
|
|
|
module.exports = {
|
|
preset: 'react-native',
|
|
// this is specific to the Jest repo, not generally needed (the files we ignore will be in node_modules which is ignored by default)
|
|
transformIgnorePatterns: [resolve(__dirname, '../../packages')],
|
|
};
|