/** * External dependencies */ import React from 'react'; import { render, screen, fireEvent, waitFor } from '@testing-library/react'; import '@testing-library/jest-dom/extend-expect'; import { AnyInterpreter } from 'xstate'; /** * Internal dependencies */ import { Intro } from '../'; jest.mock( '../../assembler-hub/site-hub', () => ( { SiteHub: jest.fn( () => null ), } ) ); jest.mock( '~/utils/react-hooks/use-network-status', () => ( { useNetworkStatus: jest.fn(), } ) ); describe( 'Intro Modals', () => { it( 'should display DesignChangeWarningModal when activeThemeHasMods and button is clicked', async () => { const sendEventMock = jest.fn(); render( ); const bannerButton = screen.getByRole( 'button', { name: /Design with AI/i, } ); fireEvent.click( bannerButton ); await waitFor( () => { expect( screen.getByText( /Are you sure you want to start a new design?/i ) ).toBeInTheDocument(); } ); const modalButton = screen.getByRole( 'button', { name: /Design with AI/i, } ); fireEvent.click( modalButton ); expect( sendEventMock ).toHaveBeenCalledWith( { type: 'DESIGN_WITH_AI', } ); } ); } );