mirror of
https://github.com/facebook/react-native.git
synced 2024-11-22 06:29:46 +00:00
ee76107d74
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/36570 I'm doing some preparations to implement this proposal to bring some DOM APIs to React Native refs: https://github.com/react-native-community/discussions-and-proposals/pull/607 To make it easier to iterate on the proposal, and to improve the separation of concerns between React and React Native, I'm moving the definition of `ReactFabricHostComponent` (the public instance provided by React when using refs on host conmponents) to the `react-native` package. I already did some steps in the React repository to simplify this: * Removing unused imperative events that caused increased coupling: https://github.com/facebook/react/pull/26282 * Extracting the definition of the public instance to a separate module: https://github.com/facebook/react/pull/26291 In this case, in order to be able to move the definition from React to React Native, we need to: 1. Create the definition in React Native and export it through `ReactNativePrivateInterface`. 2. Update React to use that definition instead of the one in its own module. This diff implements the first step. `ReactNativeAttributePayload` is required by this definition and by the one for Paper that still exists in React. I moved it here so we only define it where we use it when we remove Paper. Paper will access it through `ReactNativePrivateInterface` as well. That will also allow us to remove a few other fields in that interface. Changelog: [Internal] bypass-github-export-checks Reviewed By: yungsters Differential Revision: D43772356 fbshipit-source-id: 78dac152f415f19316ec90887127bf9861fe3110
56 lines
1.5 KiB
JavaScript
56 lines
1.5 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';
|
|
|
|
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: true,
|
|
},
|
|
snapshotFormat: {
|
|
escapeString: true,
|
|
printBasicPrototype: true,
|
|
},
|
|
testRegex: '/__tests__/.*-test\\.js$',
|
|
testPathIgnorePatterns: [
|
|
'/node_modules/',
|
|
'<rootDir>/packages/react-native/template',
|
|
'<rootDir>/packages/react-native/Libraries/Renderer/implementations',
|
|
'<rootDir>/packages/react-native/Libraries/Renderer/shims',
|
|
'<rootDir>/packages/rn-tester/e2e',
|
|
],
|
|
transformIgnorePatterns: ['node_modules/(?!@react-native/)'],
|
|
haste: {
|
|
defaultPlatform: 'ios',
|
|
platforms: ['ios', 'android'],
|
|
},
|
|
unmockedModulePathPatterns: [
|
|
'node_modules/react/',
|
|
'packages/react-native/Libraries/Renderer',
|
|
'promise',
|
|
'source-map',
|
|
'fastpath',
|
|
'denodeify',
|
|
],
|
|
testEnvironment: 'node',
|
|
collectCoverageFrom: ['packages/react-native/Libraries/**/*.js'],
|
|
coveragePathIgnorePatterns: [
|
|
'/__tests__/',
|
|
'/vendor/',
|
|
'<rootDir>/packages/react-native/Libraries/react-native/',
|
|
],
|
|
};
|