10 lines
191 B
JavaScript
10 lines
191 B
JavaScript
/// <reference types="Cypress" />
|
|
|
|
describe( 'Test If The Editor Load', () => {
|
|
it( 'Should Load', () => {
|
|
cy.visit( '/wp-admin/' );
|
|
|
|
cy.addElementorPage();
|
|
} );
|
|
} );
|