mirror of
https://github.com/joomla-extensions/weblinks.git
synced 2025-02-14 15:03:43 +00:00
12 lines
376 B
JavaScript
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()
|
|
})
|
|
})
|