Skip to content

Commit

Permalink
Fix plugin name
Browse files Browse the repository at this point in the history
  • Loading branch information
Mamaduka committed Nov 3, 2023
1 parent a52cbc7 commit 79efbef
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions test/e2e/specs/editor/plugins/meta-attribute-block.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,15 @@ const VARIATIONS = [

test.describe( 'Block with a meta attribute', () => {
test.beforeAll( async ( { requestUtils } ) => {
await requestUtils.activatePlugin( 'gutenberg-test-block-context' );
await requestUtils.activatePlugin(
'gutenberg-test-meta-attribute-block'
);
} );

test.afterAll( async ( { requestUtils } ) => {
await requestUtils.deactivatePlugin( 'gutenberg-test-block-context' );
await requestUtils.deactivatePlugin(
'gutenberg-test-meta-attribute-block'
);
} );

for ( const [ title, blockName ] of VARIATIONS ) {
Expand Down

0 comments on commit 79efbef

Please sign in to comment.