ReactDOMHostComponentTransitions-test.js — react Source File
Architecture documentation for ReactDOMHostComponentTransitions-test.js, a javascript file in the react codebase.
Entity Profile
Source Code
/**
* 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.
*
* @emails react-core
* @jest-environment ./scripts/jest/ReactDOMServerIntegrationEnvironment
*/
'use strict';
let JSDOM;
let React;
let ReactDOMClient;
let container;
let waitForAll;
describe('ReactDOM HostSingleton', () => {
beforeEach(() => {
jest.resetModules();
JSDOM = require('jsdom').JSDOM;
// Test Environment
const jsdom = new JSDOM(
'<!DOCTYPE html><html><head></head><body><div id="container">',
{
runScripts: 'dangerously',
},
);
global.window = jsdom.window;
global.document = jsdom.window.document;
container = global.document.getElementById('container');
React = require('react');
ReactDOMClient = require('react-dom/client');
const InternalTestUtils = require('internal-test-utils');
waitForAll = InternalTestUtils.waitForAll;
});
it('errors when a hoistable component becomes a Resource', async () => {
const errors = [];
function onError(e) {
errors.push(e.message);
}
const root = ReactDOMClient.createRoot(container, {
onUncaughtError: onError,
});
root.render(
<div>
<link rel="preload" href="bar" as="style" />
</div>,
);
await waitForAll([]);
root.render(
<div>
<link rel="stylesheet" href="bar" precedence="default" />
</div>,
// ... (64 more lines)
Source
Frequently Asked Questions
What does ReactDOMHostComponentTransitions-test.js do?
ReactDOMHostComponentTransitions-test.js is a source file in the react codebase, written in javascript.
Where is ReactDOMHostComponentTransitions-test.js in the architecture?
ReactDOMHostComponentTransitions-test.js is located at packages/react-dom/src/__tests__/ReactDOMHostComponentTransitions-test.js (directory: packages/react-dom/src/__tests__).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free