forked from verdnatura/salix-front
13 lines
344 B
JavaScript
Executable File
13 lines
344 B
JavaScript
Executable File
/// <reference types="cypress" />
|
|
|
|
describe('Login', () => {
|
|
beforeEach(() => {
|
|
cy.visit('/#/login');
|
|
});
|
|
|
|
it('should log in', () => {
|
|
cy.get('input[aria-label="Username"]').type('developer')
|
|
cy.get('input[aria-label="Password"]').type('nightmare')
|
|
cy.get('button[type="submit"]').click()
|
|
});
|
|
}); |