mirror of
https://github.com/facebook/react-native.git
synced 2024-11-21 21:27:46 +00:00
a272e8ee66
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/45032 Those tests haven't been running since ~1 year now. I know it's not ideal but I'd rather remove them instead of keeping them around not executing. We can still revert them back from the history once we decide to revive the E2E testing effort. Changelog: [Internal] [Changed] - Remove unused rn-tester e2e tests Reviewed By: cipolleschi Differential Revision: D58729123 fbshipit-source-id: f0f47e3c2e087141fdff506b7c5c9b460263721b
64 lines
1.8 KiB
JavaScript
64 lines
1.8 KiB
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const {defaults} = require('jest-config');
|
|
|
|
module.exports = {
|
|
transform: {
|
|
'^.+\\.(bmp|gif|jpg|jpeg|mp4|png|psd|svg|webp)$':
|
|
'<rootDir>/packages/react-native/jest/assetFileTransformer.js',
|
|
'.*': './jest/preprocessor.js',
|
|
},
|
|
setupFiles: ['./packages/react-native/jest/local-setup.js'],
|
|
fakeTimers: {
|
|
enableGlobally: true,
|
|
legacyFakeTimers: false,
|
|
},
|
|
snapshotFormat: {
|
|
escapeString: true,
|
|
printBasicPrototype: true,
|
|
},
|
|
// This allows running Meta-internal tests with the `-test.fb.js` suffix.
|
|
testRegex: '/__tests__/.*-test(\\.fb)?\\.js$',
|
|
testPathIgnorePatterns: [
|
|
'/node_modules/',
|
|
'<rootDir>/packages/react-native/template',
|
|
'<rootDir>/packages/react-native/sdks',
|
|
'<rootDir>/packages/react-native/Libraries/Renderer',
|
|
'<rootDir>/packages/react-native-test-renderer/src',
|
|
],
|
|
transformIgnorePatterns: ['node_modules/(?!@react-native/)'],
|
|
haste: {
|
|
defaultPlatform: 'ios',
|
|
platforms: ['ios', 'android'],
|
|
},
|
|
moduleFileExtensions: ['fb.js'].concat(defaults.moduleFileExtensions),
|
|
modulePathIgnorePatterns: ['scripts/.*/__fixtures__/'],
|
|
unmockedModulePathPatterns: [
|
|
'node_modules/react/',
|
|
'packages/react-native/Libraries/Renderer',
|
|
'promise',
|
|
'source-map',
|
|
'fastpath',
|
|
'denodeify',
|
|
],
|
|
testEnvironment: 'node',
|
|
collectCoverageFrom: [
|
|
'packages/react-native/Libraries/**/*.js',
|
|
'packages/react-native/src/**/*.js',
|
|
],
|
|
coveragePathIgnorePatterns: [
|
|
'/__tests__/',
|
|
'/vendor/',
|
|
'<rootDir>/packages/react-native/Libraries/react-native/',
|
|
],
|
|
};
|