0
0
Fork 0
salix-front-mindshore-fork2/test/cypress/integration/login.spec.js

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