cypress-wp-test-utils
Version:
Cypress test utilities for WordPress
15 lines (14 loc) • 429 B
JavaScript
/**
* Closes the welcome guide if displayed.
*/
export const closeWelcomeGuide = () => {
cy.window().then((window) => {
const isWelcomeGuideActive = window.wp.data
.select('core/edit-post')
.isFeatureActive('welcomeGuide');
if (isWelcomeGuideActive) {
window.wp.data.dispatch('core/edit-post').toggleFeature('welcomeGuide');
cy.reload();
}
});
};