/** @flow */ // This test harness mounts each test app as a separate root to test multi-root applications. import * as React from 'react'; import * as ReactDOMClient from 'react-dom/client'; import ListApp from '../e2e-apps/ListApp'; function mountApp(App: () => React$Node) { const container = document.createElement('div'); ((document.body: any): HTMLBodyElement).appendChild(container); const root = ReactDOMClient.createRoot(container); root.render(); } function mountTestApp() { mountApp(ListApp); } mountTestApp(); // ReactDOM Test Selector APIs used by Playwright e2e tests // If they don't exist, we mock them window.parent.REACT_DOM_APP = { createTestNameSelector: name => `[data-testname="${name}"]`, findAllNodes: (container, nodes) => container.querySelectorAll(nodes.join(' ')), ...ReactDOMClient, };