mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-31 17:38:28 +00:00
* initial cypress setup and sample specs * integrate with e2e run * update ci settings * config update * update config * remove cypress from e2e setup * update protractor settings * upgrade libs * restore tsconfig * re-enable cypress
18 lines
432 B
JavaScript
18 lines
432 B
JavaScript
describe('Login', function() {
|
|
|
|
it('logs in as an admin', () => {
|
|
cy.visit('/login');
|
|
cy
|
|
.get('#username')
|
|
.type('admin')
|
|
.should('have.value', 'admin');
|
|
cy
|
|
.get('#password')
|
|
.type('admin')
|
|
.should('have.value', 'admin');
|
|
|
|
cy.get('#login-button').click();
|
|
cy.url().should('include', '#/personal-files');
|
|
});
|
|
});
|