Files
hoppscotch/tests/e2e/integration/app.starter.spec.js
2020-02-24 21:06:23 -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")
})
})