@wordpress/e2e-test-utils
Version:
End-To-End (E2E) test utils for WordPress.
24 lines (23 loc) • 690 B
JavaScript
/**
* Internal dependencies
*/
import { switchUserToAdmin } from './switch-user-to-admin';
import { visitAdminPage } from './visit-admin-page';
import { switchUserToTest } from './switch-user-to-test';
/**
* Checks whether a theme exists on the site.
*
* @param {string} slug Theme slug to check.
* @return {boolean} Whether the theme exists.
*/
export async function isThemeInstalled(slug) {
await switchUserToAdmin();
await visitAdminPage('themes.php');
await page.waitForSelector('h2', {
text: 'Add New Theme'
});
const found = await page.$(`[data-slug="${slug}"]`);
await switchUserToTest();
return Boolean(found);
}
//# sourceMappingURL=theme-installed.js.map