Add e2e tests

This commit is contained in:
yubathom
2019-10-03 21:47:41 -03:00
parent 3ad814ebb7
commit ade7733d47
9 changed files with 1193 additions and 2 deletions

View File

@@ -0,0 +1,7 @@
describe('Visit home', () => {
it('Have a page title with "Postwoman"', () => {
cy.visit('/')
.get('title')
.should('contain','Postwoman')
})
})