diff --git a/cypress/integration/CAC-TAT.spec.js b/cypress/integration/CAC-TAT.spec.js index 36879f9d2..3bf415553 100644 --- a/cypress/integration/CAC-TAT.spec.js +++ b/cypress/integration/CAC-TAT.spec.js @@ -203,7 +203,7 @@ describe('Central de Atendimento ao Cliente TAT', function() { cy.contains('Talking About Testing').should('be.visible') }) - it('exibe e esconde as mensagens de sucesso e erro usando o .invoke', () => { + it('exibe e esconde as mensagens de sucesso e erro usando o .invoke', function() { cy.get('.success') .should('not.be.visible') .invoke('show') @@ -219,5 +219,13 @@ describe('Central de Atendimento ao Cliente TAT', function() { .invoke('hide') .should('not.be.visible') }) + + it('preenche a area de texto usando o comando invoke', function() { + const longText = Cypress._.repeat('0123456789', 20) + + cy.get('#open-text-area') + .invoke('val', longText) + .should('have.value', longText) + }) }) \ No newline at end of file