[arvados-workbench2] updated: 2.5.0-39-gdc7a9039

git repository hosting git at public.arvados.org
Thu Feb 16 14:53:26 UTC 2023


Summary of changes:
 cypress/integration/banner-tooltip.spec.js | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

       via  dc7a903923b71451916934e72e9a313e613cf908 (commit)
      from  aed81b456473ca03f87e270986d4b8d0a4c32f50 (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 dc7a903923b71451916934e72e9a313e613cf908
Author: Daniel Kutyła <daniel.kutyla at contractors.roche.com>
Date:   Thu Feb 16 15:52:59 2023 +0100

    19836: removed host from the interceptor
    
    Arvados-DCO-1.1-Signed-off-by: Daniel Kutyła <daniel.kutyla at contractors.roche.com>

diff --git a/cypress/integration/banner-tooltip.spec.js b/cypress/integration/banner-tooltip.spec.js
index 49b29301..16235ccd 100644
--- a/cypress/integration/banner-tooltip.spec.js
+++ b/cypress/integration/banner-tooltip.spec.js
@@ -60,17 +60,18 @@ describe('Collection panel tests', function () {
     beforeEach(function () {
         cy.clearCookies();
         cy.clearLocalStorage();
-        cy.intercept({ method: 'GET', hostname: 'localhost', url: '**/arvados/v1/config?nocache=*' }, (req) => {
+        cy.intercept({ method: 'GET', url: '**/arvados/v1/config?nocache=*' }, (req) => {
             req.reply((res) => {
                 res.body.Workbench.BannerUUID = collectionUUID;
             });
         });
-        cy.wait(8000);
     });
 
     it('should re-show the banner', () => {
         cy.loginAs(adminUser);
 
+        cy.wait(2000);
+
         cy.get('[data-cy=confirmation-dialog-ok-btn]').click();
 
         cy.get('[title=Notifications]').click();
@@ -85,6 +86,8 @@ describe('Collection panel tests', function () {
     it('should show tooltips and remove tooltips as localStorage key is present', () => {
         cy.loginAs(adminUser);
 
+        cy.wait(2000);
+
         cy.get('[data-cy=side-panel-tree]').then(($el) => {
             const el = $el.get(0) //native DOM element
             expect(el._tippy).to.exist;

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


hooks/post-receive
-- 




More information about the arvados-commits mailing list