30
1
mirror of https://github.com/joomla-extensions/weblinks.git synced 2024-06-07 17:00:49 +00:00
weblinks/tests/cypress/integration/install/install.cy.js

12 lines
376 B
JavaScript
Raw Normal View History

// 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()
})
})