blob: e3529a9aad887715a9c354e21b12630689599c41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
it('loads the right front page', function() {
cy.visit('http://borsetshire.localhost:3001/');
cy.contains('Borsetshire');
});
it('logs in without fuss', function() {
cy.contains('Sign in').click();
cy.contains('Customer service').click();
cy.url().should('include', '/reports');
cy.contains('Your account').click();
cy.contains('Sign out').click();
cy.contains('Sign in').click();
cy.contains('Inspector').click();
cy.url().should('include', '/my/planned');
cy.visit('http://borsetshire.localhost:3001/auth');
cy.get('[name=username]').type('super@example.org');
cy.contains('Sign in with a password').click();
cy.get('[name=password_sign_in]').type('password');
cy.get('[name=sign_in_by_password]').last().click();
cy.url().should('include', '/admin');
});
|