frequi_origin/cypress/integration/login.spec.ts

12 lines
404 B
TypeScript
Raw Normal View History

2022-01-01 18:50:59 +00:00
describe('Login', () => {
it('Is not logged in', () => {
cy.visit('/');
cy.get('button').should('contain', 'Login');
cy.get('li').should('contain', 'No bot selected');
cy.get('button').contains('Login').click();
cy.get('.modal-title').contains('Login to your bot');
// Check for prefill
cy.get('input[id=url-input]').should('have.value', 'http://localhost:8080');
});
});