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