diff --git a/tests/e2e/specs/gutenberg-plugin.test.js b/tests/e2e/specs/gutenberg-plugin.test.js index 75ac0a6b6d..21b6e9737d 100644 --- a/tests/e2e/specs/gutenberg-plugin.test.js +++ b/tests/e2e/specs/gutenberg-plugin.test.js @@ -14,11 +14,13 @@ describe( 'Gutenberg plugin', () => { await uninstallPlugin( 'gutenberg' ); } ); - it( 'Activate the Gutenberg plugin', async () => { + it( 'should activate', async () => { await activatePlugin( 'gutenberg' ); - // If plugin activation fails, it will time out and throw an error, - // since the activatePlugin helper is looking for a `.deactivate` link - // which is only there if activation succeeds. + /* + * If plugin activation fails, it will time out and throw an error, + * since the activatePlugin helper is looking for a `.deactivate` link + * which is only there if activation succeeds. + */ await deactivatePlugin( 'gutenberg' ); } ); } );