diff --git a/tests/e2e/specs/gutenberg-plugin.test.js b/tests/e2e/specs/gutenberg-plugin.test.js deleted file mode 100644 index 21b6e9737d0f1..0000000000000 --- a/tests/e2e/specs/gutenberg-plugin.test.js +++ /dev/null @@ -1,26 +0,0 @@ -import { - activatePlugin, - deactivatePlugin, - installPlugin, - uninstallPlugin, -} from '@wordpress/e2e-test-utils'; - -describe( 'Gutenberg plugin', () => { - beforeAll( async () => { - await installPlugin( 'gutenberg' ); - } ); - - afterAll( async () => { - await uninstallPlugin( 'gutenberg' ); - } ); - - 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. - */ - await deactivatePlugin( 'gutenberg' ); - } ); -} );