mirror of
https://github.com/zebrajr/react.git
synced 2025-12-06 12:20:20 +01:00
* Use consistent naming for unstable_testing entry point * Exclude the testing build from non-experimental builds except at FB * FB builds shouldn't contribute to whether we include the npm files * Exclude exports fields if we delete the files entry * Move test to no longer be internal so we can test against the build * Update the bundle artifact names since they've now changed * Gate import since it doesn't exist
23 lines
543 B
JavaScript
23 lines
543 B
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow
|
|
*/
|
|
|
|
export * from './index.classic.fb.js';
|
|
export {
|
|
createComponentSelector,
|
|
createHasPseudoClassSelector,
|
|
createRoleSelector,
|
|
createTestNameSelector,
|
|
createTextSelector,
|
|
getFindAllNodesFailureDescription,
|
|
findAllNodes,
|
|
findBoundingRects,
|
|
focusWithin,
|
|
observeVisibleRects,
|
|
} from 'react-reconciler/src/ReactFiberReconciler';
|