import * as React from 'react' import {render, waitForElementToBeRemoved, screen, waitFor} from '../' describe.each([ ['real timers', () => jest.useRealTimers()], ['fake legacy timers', () => jest.useFakeTimers('legacy')], ['fake modern timers', () => jest.useFakeTimers('modern')], ])( 'it waits for the data to be loaded in a macrotask using %s', (label, useTimers) => { beforeEach(() => { useTimers() }) afterEach(() => { jest.useRealTimers() }) const fetchAMessageInAMacrotask = () => new Promise(resolve => { // we are using random timeout here to simulate a real-time example // of an async operation calling a callback at a non-deterministic time const randomTimeout = Math.floor(Math.random() * 100) setTimeout(() => { resolve({returnedMessage: 'Hello World'}) }, randomTimeout) }) function ComponentWithMacrotaskLoader() { const [state, setState] = React.useState({data: undefined, loading: true}) React.useEffect(() => { let cancelled = false fetchAMessageInAMacrotask().then(data => { if (!cancelled) { setState({data, loading: false}) } }) return () => { cancelled = true } }, []) if (state.loading) { return
Loading...
} return (
Loaded this message: {state.data.returnedMessage}!
) } test('waitForElementToBeRemoved', async () => { render() const loading = () => screen.getByText('Loading...') await waitForElementToBeRemoved(loading) expect(screen.getByTestId('message')).toHaveTextContent(/Hello World/) }) test('waitFor', async () => { render() await waitFor(() => screen.getByText(/Loading../)) await waitFor(() => screen.getByText(/Loaded this message:/)) expect(screen.getByTestId('message')).toHaveTextContent(/Hello World/) }) test('findBy', async () => { render() await expect(screen.findByTestId('message')).resolves.toHaveTextContent( /Hello World/, ) }) }, ) describe.each([ ['real timers', () => jest.useRealTimers()], ['fake legacy timers', () => jest.useFakeTimers('legacy')], ['fake modern timers', () => jest.useFakeTimers('modern')], ])( 'it waits for the data to be loaded in many microtask using %s', (label, useTimers) => { beforeEach(() => { useTimers() }) afterEach(() => { jest.useRealTimers() }) const fetchAMessageInAMicrotask = () => Promise.resolve({ status: 200, json: () => Promise.resolve({title: 'Hello World'}), }) function ComponentWithMicrotaskLoader() { const [fetchState, setFetchState] = React.useState({fetching: true}) React.useEffect(() => { if (fetchState.fetching) { fetchAMessageInAMicrotask().then(res => { return ( res .json() // By spec, the runtime can only yield back to the event loop once // the microtask queue is empty. // So we ensure that we actually wait for that as well before yielding back from `waitFor`. .then(data => data) .then(data => data) .then(data => data) .then(data => data) .then(data => data) .then(data => data) .then(data => data) .then(data => data) .then(data => data) .then(data => data) .then(data => data) .then(data => { setFetchState({todo: data.title, fetching: false}) }) ) }) } }, [fetchState]) if (fetchState.fetching) { return

Loading..

} return (
Loaded this message: {fetchState.todo}
) } test('waitForElementToBeRemoved', async () => { render() const loading = () => screen.getByText('Loading..') await waitForElementToBeRemoved(loading) expect(screen.getByTestId('message')).toHaveTextContent(/Hello World/) }) test('waitFor', async () => { render() await waitFor(() => { screen.getByText('Loading..') }) await waitFor(() => { screen.getByText(/Loaded this message:/) }) expect(screen.getByTestId('message')).toHaveTextContent(/Hello World/) }) test('findBy', async () => { render() await expect(screen.findByTestId('message')).resolves.toHaveTextContent( /Hello World/, ) }) }, ) describe.each([ ['real timers', () => jest.useRealTimers()], ['fake legacy timers', () => jest.useFakeTimers('legacy')], ['fake modern timers', () => jest.useFakeTimers('modern')], ])( 'it waits for the data to be loaded in a microtask using %s', (label, useTimers) => { beforeEach(() => { useTimers() }) afterEach(() => { jest.useRealTimers() }) const fetchAMessageInAMicrotask = () => Promise.resolve({ status: 200, json: () => Promise.resolve({title: 'Hello World'}), }) function ComponentWithMicrotaskLoader() { const [fetchState, setFetchState] = React.useState({fetching: true}) React.useEffect(() => { if (fetchState.fetching) { fetchAMessageInAMicrotask().then(res => { return res.json().then(data => { setFetchState({todo: data.title, fetching: false}) }) }) } }, [fetchState]) if (fetchState.fetching) { return

Loading..

} return (
Loaded this message: {fetchState.todo}
) } test('waitForElementToBeRemoved', async () => { render() const loading = () => screen.getByText('Loading..') await waitForElementToBeRemoved(loading) expect(screen.getByTestId('message')).toHaveTextContent(/Hello World/) }) test('waitFor', async () => { render() await waitFor(() => { screen.getByText('Loading..') }) await waitFor(() => { screen.getByText(/Loaded this message:/) }) expect(screen.getByTestId('message')).toHaveTextContent(/Hello World/) }) test('findBy', async () => { render() await expect(screen.findByTestId('message')).resolves.toHaveTextContent( /Hello World/, ) }) }, )