'use strict';
let React;
let ReactNoop;
let waitForAll;
describe('ReactTopLevelText', () => {
beforeEach(() => {
jest.resetModules();
React = require('react');
ReactNoop = require('react-noop-renderer');
const InternalTestUtils = require('internal-test-utils');
waitForAll = InternalTestUtils.waitForAll;
});
it('should render a component returning strings directly from render', async () => {
const Text = ({value}) => value;
ReactNoop.render(<Text value="foo" />);
await waitForAll([]);
expect(ReactNoop).toMatchRenderedOutput('foo');
});
it('should render a component returning numbers directly from render', async () => {
const Text = ({value}) => value;
ReactNoop.render(<Text value={10} />);
await waitForAll([]);
expect(ReactNoop).toMatchRenderedOutput('10');
});
it('should render a component returning bigints directly from render', async () => {
const Text = ({value}) => value;
ReactNoop.render(<Text value={10n} />);
await waitForAll([]);
expect(ReactNoop).toMatchRenderedOutput('10');
});
});