How to use the @wordpress/e2e-test-utils.deactivatePlugin function in @wordpress/e2e-test-utils

To help you get started, we’ve selected a few @wordpress/e2e-test-utils examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github google / site-kit-wp / tests / e2e / utils / reset.js View on Github external
export async function resetSiteKit() {
	await activatePlugin( PLUGIN_SLUG );
	clearLocalStorage();
	clearSessionStorage();
	await deactivatePlugin( PLUGIN_SLUG );
}
github liip / bootstrap-blocks-wordpress-plugin / e2e-tests / column / column-filters.spec.js View on Github external
afterAll( async () => {
		await deactivatePlugin( 'wp-bootstrap-blocks-test-column-filters' );
	} );
github WordPress / gutenberg / packages / e2e-tests / specs / editor / plugins / innerblocks-locking-all-embed.js View on Github external
afterAll( async () => {
		await deactivatePlugin( 'gutenberg-test-innerblocks-locking-all-embed' );
	} );
github liip / bootstrap-blocks-wordpress-plugin / e2e-tests / button / button-filters.spec.js View on Github external
afterAll( async () => {
		await deactivatePlugin( 'wp-bootstrap-blocks-test-button-filters' );
	} );
github liip / bootstrap-blocks-wordpress-plugin / e2e-tests / row / row-filters.spec.js View on Github external
afterAll( async () => {
		await deactivatePlugin( 'wp-bootstrap-blocks-test-row-filters' );
	} );
github liip / bootstrap-blocks-wordpress-plugin / e2e-tests / row / row-old-template-structure.spec.js View on Github external
afterAll( async () => {
		await deactivatePlugin( 'wp-bootstrap-blocks-test-row-old-template-structure' );
	} );
github liip / bootstrap-blocks-wordpress-plugin / e2e-tests / container / container-filters.spec.js View on Github external
afterAll( async () => {
		await deactivatePlugin( 'wp-bootstrap-blocks-test-container-filters' );
	} );