diff --git a/cypress/e2e/admin.cy.js b/cypress/e2e/admin.cy.js index af905a6..c277eb9 100644 --- a/cypress/e2e/admin.cy.js +++ b/cypress/e2e/admin.cy.js @@ -1,6 +1,7 @@ describe('The admin page', () => { it('successfully loads texts', () => { cy.visit('/admin') - + cy.get('#newTextname').type('new text') + cy.get('#submit').click() }) })