Fix code quality issues and GitHub Actions workflows

This commit is contained in:
2025-04-22 22:30:31 +01:00
parent f3d6bd2434
commit 0c4e91fcec
10 changed files with 61 additions and 22 deletions

View File

@@ -8,6 +8,8 @@ describe('WordPress Playground Multisite Tests', () => {
it('Can access the site', () => {
// Check if the page loaded
cy.get('body').should('exist');
cy.get('h1').should('exist');
cy.title().should('include', 'WordPress');
});
it('Can access the network admin area', () => {
@@ -19,6 +21,8 @@ describe('WordPress Playground Multisite Tests', () => {
// Check if we're logged in to the network admin
cy.get('#wpadminbar').should('exist');
cy.get('#wpbody-content').should('exist');
cy.title().should('include', 'Network Admin');
});
it('Plugin is network activated', () => {