[ARVADOS-WORKBENCH2] updated: 2.1.0-368-gc87087af

Git user git at public.arvados.org
Tue May 11 16:51:46 UTC 2021


Summary of changes:
 cypress/integration/collection.spec.js | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

       via  c87087af3b3e4618af1bfe6ac86bed9db610909c (commit)
      from  d1400d750add1a427bf2def7ed61abe213b147c5 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


commit c87087af3b3e4618af1bfe6ac86bed9db610909c
Author: Lucas Di Pentima <lucas at di-pentima.com.ar>
Date:   Tue May 11 13:50:19 2021 -0300

    17582: Fixes test to avoid treating '{strings}' like cypress commands.
    
    Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas at di-pentima.com.ar>

diff --git a/cypress/integration/collection.spec.js b/cypress/integration/collection.spec.js
index a54f13ca..93d4d175 100644
--- a/cypress/integration/collection.spec.js
+++ b/cypress/integration/collection.spec.js
@@ -220,7 +220,7 @@ describe('Collection panel tests', function () {
         })
     })
 
-    it('renames a file using valid names', function () {
+    it.only('renames a file using valid names', function () {
         function eachPair(lst, func){
             for(var i=0; i < lst.length - 1; i++){
                 func(lst[i], lst[i + 1])
@@ -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]')

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list