weblinks/tests/cypress/integration/install/install.cy.js

12 lines
376 B
JavaScript

// type definitions for Cypress object "cy"
// <reference types="cypress" />
describe('Install Joomla and Weblinks package', () => {
it('Install Joomla and Weblinks package', function () {
cy.doAdministratorLogin(Cypress.env('username'), Cypress.env('password'))
cy.disableStatistics()
cy.setErrorReportingToDevelopment()
cy.doAdministratorLogout()
})
})