2020-11-06 01:21:05 +00:00
|
|
|
|
/**
|
|
|
|
|
* External dependencies
|
|
|
|
|
*/
|
|
|
|
|
import { render, screen } from '@testing-library/react';
|
2021-07-23 12:47:23 +00:00
|
|
|
|
import { useSelect } from '@wordpress/data';
|
2020-11-06 01:21:05 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Internal dependencies
|
|
|
|
|
*/
|
|
|
|
|
import OrdersPanel from '../';
|
|
|
|
|
|
2021-07-23 12:47:23 +00:00
|
|
|
|
jest.mock( '@wordpress/data', () => {
|
|
|
|
|
// Require the original module to not be mocked...
|
|
|
|
|
const originalModule = jest.requireActual( '@wordpress/data' );
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
__esModule: true, // Use it when dealing with esModules
|
|
|
|
|
...originalModule,
|
|
|
|
|
useSelect: jest.fn().mockReturnValue( {} ),
|
|
|
|
|
};
|
|
|
|
|
} );
|
|
|
|
|
|
2020-11-06 01:21:05 +00:00
|
|
|
|
describe( 'OrdersPanel', () => {
|
|
|
|
|
it( 'should render an empty order card', () => {
|
2021-07-23 12:47:23 +00:00
|
|
|
|
useSelect.mockReturnValue( {
|
|
|
|
|
orders: [],
|
|
|
|
|
isError: false,
|
|
|
|
|
isRequesting: false,
|
|
|
|
|
} );
|
2022-01-19 16:45:17 +00:00
|
|
|
|
render( <OrdersPanel orderStatuses={ [] } unreadOrdersCount={ 0 } /> );
|
2020-11-06 01:21:05 +00:00
|
|
|
|
expect(
|
|
|
|
|
screen.queryByText( 'You’ve fulfilled all your orders' )
|
|
|
|
|
).toBeInTheDocument();
|
|
|
|
|
} );
|
|
|
|
|
} );
|