Add basic rooms page tests

This commit is contained in:
Ramon Wenger 2018-10-24 14:36:42 +02:00
parent 4abf899222
commit 2dae1dfb0b
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
describe('The Rooms Page', () => {
it.only('goes to the rooms page', () => {
cy.login('rahel.cueni', 'test');
cy.visit('/rooms');
cy.get('.add-room').should('exist');
});
});