cms/tests/System/integration/administrator/general.cy.js

10 lines
300 B
JavaScript

// type definitions for Cypress object "cy"
// <reference types="cypress" />
describe('Test general features of Joomla Backend', () => {
it('Login/Logout in Frontend', () => {
cy.doAdministratorLogin(Cypress.env('username'), Cypress.env('password'));
cy.doAdministratorLogout();
});
});