From 52517c004729bb893cf1ba8953def1947d20a66a Mon Sep 17 00:00:00 2001 From: Lucas Di Pentima Date: Tue, 11 May 2021 13:50:19 -0300 Subject: [PATCH] 17582: Fixes test to avoid treating '{strings}' like cypress commands. Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima --- cypress/integration/collection.spec.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cypress/integration/collection.spec.js b/cypress/integration/collection.spec.js index a54f13ca..e9876c97 100644 --- a/cypress/integration/collection.spec.js +++ b/cypress/integration/collection.spec.js @@ -270,7 +270,9 @@ describe('Collection panel tests', function () { cy.get('[data-cy=form-dialog]') .should('contain', 'Rename') .within(() => { - cy.get('input').type(`{selectall}{backspace}${to}`); + cy.get('input') + .type('{selectall}{backspace}') + .type(to, { parseSpecialCharSequences: false }); }); cy.get('[data-cy=form-submit-btn]').click(); cy.get('[data-cy=collection-files-panel]') -- 2.30.2