You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
400 B
14 lines
400 B
describe('Login Page', () => {
|
|
it('succesfully logs in as an admin', () => {
|
|
cy.login(Cypress.env('ADMIN_EMAIL'), Cypress.env('ADMIN_PASSWORD'));
|
|
cy.visit('/');
|
|
cy.contains('Recently Added');
|
|
});
|
|
|
|
it('succesfully logs in as a local user', () => {
|
|
cy.login(Cypress.env('USER_EMAIL'), Cypress.env('USER_PASSWORD'));
|
|
cy.visit('/');
|
|
cy.contains('Recently Added');
|
|
});
|
|
});
|