17582: Fixes test to avoid treating '{strings}' like cypress commands.
[arvados-workbench2.git] / cypress / integration / collection.spec.js
index a54f13ca5d41fdd99e42842ea9eb80519f761f29..e9876c9754384d4ea94341c9d0642a16f7403ae8 100644 (file)
@@ -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]')