mirror of
git://develop.git.wordpress.org/
synced 2025-03-28 07:42:33 +01:00
Editor: Remove a test that is no longer necessary in the 6.2 branch.
The Gutenberg plugin is no longer compatible with WordPress 6.2, therefore the Gutenberg plugin installation test will fail from now on in this branch. git-svn-id: https://develop.svn.wordpress.org/branches/6.2@57972 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
a9755a33de
commit
ef9acf3570
@ -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' );
|
||||
} );
|
||||
} );
|
Loading…
x
Reference in New Issue
Block a user