woocommerce/plugins/woocommerce-admin/client/customize-store/intro/tests/intro-banner.test.tsx

81 lines
2.0 KiB
TypeScript
Raw Normal View History

/**
* External dependencies
*/
import React from 'react';
import { render, screen, fireEvent } from '@testing-library/react';
import '@testing-library/jest-dom/extend-expect';
import { AnyInterpreter } from 'xstate';
/**
* Internal dependencies
*/
import { Intro } from '../';
import { useNetworkStatus } from '~/utils/react-hooks/use-network-status';
jest.mock( '../../assembler-hub/site-hub', () => ( {
SiteHub: jest.fn( () => null ),
} ) );
jest.mock( '~/utils/react-hooks/use-network-status', () => ( {
useNetworkStatus: jest.fn(),
} ) );
describe( 'Intro Banners', () => {
it( 'should display NetworkOfflineBanner when network is offline', () => {
( useNetworkStatus as jest.Mock ).mockImplementation( () => true );
render(
<Intro
sendEvent={ jest.fn() }
context={ {
intro: {
hasErrors: false,
activeTheme: '',
themeCards: [],
activeThemeHasMods: false,
customizeStoreTaskCompleted: false,
currentThemeIsAiGenerated: false,
},
themeConfiguration: {},
} }
parentMachine={ null as unknown as AnyInterpreter }
/>
);
expect(
screen.getByText(
/Please check your internet connection and try again./i
)
).toBeInTheDocument();
} );
it( 'should display the default banner by default', () => {
const sendEventMock = jest.fn();
( useNetworkStatus as jest.Mock ).mockImplementation( () => false );
render(
<Intro
sendEvent={ sendEventMock }
context={ {
intro: {
hasErrors: false,
activeTheme: '',
themeCards: [],
activeThemeHasMods: false,
customizeStoreTaskCompleted: false,
currentThemeIsAiGenerated: false,
},
themeConfiguration: {},
} }
parentMachine={ null as unknown as AnyInterpreter }
/>
);
expect(
screen.getByText( /Use the power of AI to design your store/i )
).toBeInTheDocument();
const button = screen.getByRole( 'button', {
name: /Design with AI/i,
} );
fireEvent.click( button );
expect( sendEventMock ).toHaveBeenCalledWith( {
type: 'DESIGN_WITH_AI',
} );
} );
} );