Files
hoppscotch/tests/e2e/integration/app.starter.spec.js
Liyas Thomas 564f659778 Updating tests
2020-03-12 22:49:43 +05:30

8 lines
202 B
JavaScript

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