Files
hoppscotch/tests/e2e/integration/app.starter.spec.js

8 lines
199 B
JavaScript

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