2021-10-11 16:05:50 +00:00
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
|
|
|
import { getAllBlocks, switchUserToAdmin } from '@wordpress/e2e-test-utils';
|
|
|
|
|
|
|
|
import { visitBlockPage } from '@woocommerce/blocks-test-utils';
|
|
|
|
|
2022-05-23 12:05:30 +00:00
|
|
|
/**
|
|
|
|
* Internal dependencies
|
|
|
|
*/
|
2021-10-11 16:05:50 +00:00
|
|
|
import { insertBlockDontWaitForInsertClose } from '../../utils.js';
|
|
|
|
|
|
|
|
const block = {
|
|
|
|
name: 'Top Rated Products',
|
|
|
|
slug: 'woocommerce/product-top-rated',
|
|
|
|
class: '.wc-block-product-top-rated',
|
|
|
|
};
|
|
|
|
|
|
|
|
describe( `${ block.name } Block`, () => {
|
|
|
|
beforeAll( async () => {
|
|
|
|
await switchUserToAdmin();
|
|
|
|
await visitBlockPage( `${ block.name } Block` );
|
|
|
|
} );
|
|
|
|
|
|
|
|
it( 'renders without crashing', async () => {
|
|
|
|
await expect( page ).toRenderBlock( block );
|
|
|
|
} );
|
|
|
|
|
|
|
|
it( 'can be inserted more than once', async () => {
|
|
|
|
await insertBlockDontWaitForInsertClose( block.name );
|
|
|
|
expect( await getAllBlocks() ).toHaveLength( 2 );
|
|
|
|
} );
|
|
|
|
} );
|