21600: incorporated Stephens changes Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa...
authorLisa Knox <lisaknox83@gmail.com>
Tue, 19 Mar 2024 13:21:01 +0000 (09:21 -0400)
committerLisa Knox <lisaknox83@gmail.com>
Tue, 19 Mar 2024 13:21:01 +0000 (09:21 -0400)
services/workbench2/cypress/e2e/banner-tooltip.cy.js

index 3b4a4fac47f2c22543a1d6d18bf139f347d08d25..63d2c264d8cf0ce2a24b7682961a6f1df0cb2d21 100644 (file)
@@ -60,7 +60,7 @@ describe('Banner / tooltip tests', function () {
                 .should('contain', 'tooltips.json');
 
             cy.intercept({ method: 'GET', url: '**/arvados/v1/config?nocache=*' }, (req) => {
-                req.reply((res) => {
+                req.on('response', (res) => {
                     res.body.Workbench.BannerUUID = collectionUUID;
                 });
             });
@@ -69,14 +69,14 @@ describe('Banner / tooltip tests', function () {
 
     it('should re-show the banner', () => {
         cy.loginAs(adminUser);
+        cy.waitForDom();
 
         cy.get('[data-cy=confirmation-dialog-ok-btn]').click();
         cy.waitForDom();
+        cy.get('[data-cy=confirmation-dialog]').should('not.exist');
 
-        cy.get('[title=Notifications]').click({ force: true });
-        cy.waitForDom();
-        cy.get('[data-cy=restore-banner-li]').click({ force: true });
-        cy.waitForDom();
+        cy.get('[title=Notifications]').click();
+        cy.get('li').contains('Restore Banner').click();
 
         cy.get('[data-cy=confirmation-dialog-ok-btn]').should('be.visible');
     });
@@ -84,26 +84,24 @@ describe('Banner / tooltip tests', function () {
 
     it('should show tooltips and remove tooltips as localStorage key is present', () => {
         cy.loginAs(adminUser);
+        cy.waitForDom();
 
         cy.get('[data-cy=side-panel-tree]').then(($el) => {
-            if(!!$el) {
-                const el = $el.get(0) //native DOM element
-                expect(el._tippy).to.not.be.undefined;
-            }
+            const el = $el.get(0) //native DOM element
+            expect(el._tippy).to.exist;
         });
 
         cy.get('[data-cy=confirmation-dialog-ok-btn]').click();
         cy.waitForDom();
+        cy.get('[data-cy=confirmation-dialog]').should('not.exist');
 
         cy.get('[title=Notifications]').click();
+        cy.get('li').contains('Disable tooltips').click();
         cy.waitForDom();
-        cy.get('[data-cy=disable-tooltip-toggle]').click({ force: true });
 
         cy.get('[data-cy=side-panel-tree]').then(($el) => {
-            if(!!$el) {
-                const el = $el.get(0) //native DOM element
-                expect(el._tippy).to.be.undefined;
-            }
+            const el = $el.get(0) //native DOM element
+            expect(el._tippy).to.be.undefined;
         });
     });
-});
\ No newline at end of file
+});