This commit is contained in:
2022-03-05 15:35:54 +01:00
commit 7d99958156
13 changed files with 4542 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
describe("initial load", () => {
before(() => {
cy.visit("http://localhost:8000")
})
it("the typing input is in focus", () => {
cy.visit("http://localhost:8000")
expect(cy.get("#typing-input").should('have.focus'))
})
it("there is a word to match displayed", () => {
cy.get("#current-word").should('be.visible')
})
})