X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/ee0b3767b36691938003dbb897e8e5a915233dfd..db4a44827d8e58913bae985e77a251f72efe5a5e:/cypress/integration/banner-tooltip.spec.js diff --git a/cypress/integration/banner-tooltip.spec.js b/cypress/integration/banner-tooltip.spec.js index f331a8871c..ccd4166a41 100644 --- a/cypress/integration/banner-tooltip.spec.js +++ b/cypress/integration/banner-tooltip.spec.js @@ -34,24 +34,29 @@ describe('Collection panel tests', function () { .then(function ([bannerCollection]) { collectionUUID=bannerCollection.uuid; - + cy.loginAs(adminUser); - + cy.goToPath(`/collections/${bannerCollection.uuid}`); - + cy.get('[data-cy=upload-button]').click(); - + cy.fixture('files/banner.html').as('banner'); cy.fixture('files/tooltips.txt').as('tooltips'); - + cy.getAll('@banner', '@tooltips') .then(([banner, tooltips]) => { console.log(tooltips) - cy.get('[data-cy=drag-and-drop]').upload(btoa(banner), 'banner.html'); - cy.get('[data-cy=drag-and-drop]').upload(btoa(tooltips), 'tooltips.json'); + cy.get('[data-cy=drag-and-drop]').upload(banner, 'banner.html', false); + cy.get('[data-cy=drag-and-drop]').upload(tooltips, 'tooltips.json', false); }); - + cy.get('[data-cy=form-submit-btn]').click(); + cy.get('[data-cy=form-submit-btn]').should('not.exist'); + cy.get('[data-cy=collection-files-right-panel]') + .contains('banner.html').should('exist'); + cy.get('[data-cy=collection-files-right-panel]') + .contains('tooltips.json').should('exist'); }); }); cy.on('uncaught:exception', (err, runnable) => {console.error(err)}); @@ -60,7 +65,7 @@ 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; });