X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/f17af4bfbdd3b0054d3494cdc6c5f75c2e872d9f..2c257e34488b251e146631e12559732b3879d567:/cypress/integration/login.spec.js diff --git a/cypress/integration/login.spec.js b/cypress/integration/login.spec.js index d88c7a6c..aeea01cd 100644 --- a/cypress/integration/login.spec.js +++ b/cypress/integration/login.spec.js @@ -28,7 +28,7 @@ describe('Login tests', function() { inactiveUser = this.inactiveUser; } ); - randomUser.username = `randomuser${Math.floor(Math.random() * Math.floor(999999))}`; + randomUser.username = `randomuser${Math.floor(Math.random() * 999999)}`; randomUser.password = { crypt: 'zpAReoZzPnwmQ', clear: 'topsecret', @@ -89,11 +89,11 @@ describe('Login tests', function() { cy.doRequest('PUT', `/arvados/v1/api_client_authorizations/${tokenUuid}`, { id: tokenUuid, api_client_authorization: JSON.stringify({ - api_token: `randomToken${Math.floor(Math.random() * Math.floor(999999))}` + api_token: `randomToken${Math.floor(Math.random() * 999999)}` }) }, null, activeUser.token, true); // Should log the user out. - cy.get('[data-cy=breadcrumb-first]').click(); + cy.visit('/'); cy.get('div#root').should('contain', 'Please log in'); })