Files
hoppscotch/tests/e2e/integration/app.starter.spec.js
2020-02-24 13:44:50 -05:00

8 lines
202 B
JavaScript

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