mirror of
https://github.com/zebrajr/react.git
synced 2025-12-06 12:20:20 +01:00
59 lines
2.1 KiB
JavaScript
59 lines
2.1 KiB
JavaScript
'use strict';
|
|
|
|
const inlinedHostConfigs = require('../shared/inlinedHostConfigs');
|
|
|
|
// When testing the custom renderer code path through `react-reconciler`,
|
|
// turn the export into a function, and use the argument as host config.
|
|
const shimHostConfigPath = 'react-reconciler/src/ReactFiberHostConfig';
|
|
jest.mock('react-reconciler', () => {
|
|
return config => {
|
|
jest.mock(shimHostConfigPath, () => config);
|
|
return require.requireActual('react-reconciler');
|
|
};
|
|
});
|
|
jest.mock('react-reconciler/persistent', () => {
|
|
return config => {
|
|
jest.mock(shimHostConfigPath, () => config);
|
|
return require.requireActual('react-reconciler/persistent');
|
|
};
|
|
});
|
|
|
|
// But for inlined host configs (such as React DOM, Native, etc), we
|
|
// mock their named entry points to establish a host config mapping.
|
|
inlinedHostConfigs.forEach(rendererInfo => {
|
|
if (rendererInfo.shortName === 'custom') {
|
|
// There is no inline entry point for the custom renderers.
|
|
// Instead, it's handled by the generic `react-reconciler` entry point above.
|
|
return;
|
|
}
|
|
jest.mock(`react-reconciler/inline.${rendererInfo.shortName}`, () => {
|
|
let hasImportedShimmedConfig = false;
|
|
|
|
// We want the reconciler to pick up the host config for this renderer.
|
|
jest.mock(shimHostConfigPath, () => {
|
|
hasImportedShimmedConfig = true;
|
|
return require.requireActual(
|
|
`react-reconciler/src/forks/ReactFiberHostConfig.${
|
|
rendererInfo.shortName
|
|
}.js`
|
|
);
|
|
});
|
|
|
|
const renderer = require.requireActual('react-reconciler');
|
|
// If the shimmed config factory function above has not run,
|
|
// it means this test file loads more than one renderer
|
|
// but doesn't reset modules between them. This won't work.
|
|
if (!hasImportedShimmedConfig) {
|
|
throw new Error(
|
|
`Could not import the "${rendererInfo.shortName}" renderer ` +
|
|
`in this suite because another renderer has already been ` +
|
|
`loaded earlier. Call jest.resetModules() before importing any ` +
|
|
`of the following entry points:\n\n` +
|
|
rendererInfo.entryPoints.map(entry => ` * ${entry}`)
|
|
);
|
|
}
|
|
|
|
return renderer;
|
|
});
|
|
});
|