This commit is contained in:
Niels Lange 2021-09-17 14:07:26 +02:00 committed by GitHub
parent da21021255
commit 37920b118d
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1 @@
{"title":"Featured Product Block","pageContent":"<!-- wp:woocommerce/featured-product /-->"}

View File

@ -0,0 +1,30 @@
/**
* External dependencies
*/
import { getAllBlocks, switchUserToAdmin } from '@wordpress/e2e-test-utils';
import { visitBlockPage } from '@woocommerce/blocks-test-utils';
import { insertBlockDontWaitForInsertClose } from '../../utils.js';
const block = {
name: 'Featured Product',
slug: 'woocommerce/featured-product',
class: '.wc-block-featured-product',
};
describe( `${ block.name } Block`, () => {
beforeAll( async () => {
await switchUserToAdmin();
await visitBlockPage( `${ block.name } Block` );
} );
it( 'can be inserted more than once', async () => {
await insertBlockDontWaitForInsertClose( block.name );
expect( await getAllBlocks() ).toHaveLength( 2 );
} );
it( 'renders without crashing', async () => {
await expect( page ).toRenderBlock( block );
} );
} );