7 lines
144 B
JavaScript
7 lines
144 B
JavaScript
describe("Hello World", () => {
|
|
it("should have an h1 tag", () => {
|
|
cy.visit("/en/test")
|
|
cy.get("h1").contains("Hello World")
|
|
})
|
|
})
|