diff --git a/client/cypress/e2e/frontend/modules/assignment-in-module.spec.ts b/client/cypress/e2e/frontend/modules/assignment-in-module.spec.ts index 9cfcfb4f..dd3c0c96 100644 --- a/client/cypress/e2e/frontend/modules/assignment-in-module.spec.ts +++ b/client/cypress/e2e/frontend/modules/assignment-in-module.spec.ts @@ -104,9 +104,9 @@ describe('Assignment in Module', () => { cy.getByDataCy('submission-textarea').should('not.have.class', 'submission-form__textarea--readonly'); }); - it('does not see assignment input on mobile', () => { + it('does see assignment input on mobile', () => { cy.viewport('iphone-8'); - cy.getByDataCy('submission-textarea').should('not.be.visible'); + cy.getByDataCy('submission-textarea').should('be.visible').type('Hello World'); }); it('types into the submission input and does not react to server returning something in the submission response', () => {