tests(fix): update start-server-and-test, update e2e tests, change build test command at ci

This commit is contained in:
yubathom
2020-02-01 18:36:51 -03:00
parent 7cf5345c5a
commit 85c5f16e93
8 changed files with 152 additions and 102 deletions

View File

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