Skip to content

Commit

Permalink
fix: remove cookie check due to flake introduced in cypress
Browse files Browse the repository at this point in the history
  • Loading branch information
Caleb Kang committed Aug 12, 2020
1 parent f25d1e1 commit c52c5e5
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion webui/tests/cypress/support/commands.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ Cypress.Commands.add('checkLoggedIn', username => {
Cypress.Commands.add('checkLoggedOut', () => {
cy.visit('/');
cy.location('pathname').should('eq', '/det/login');
cy.getCookie('auth').should('eq', null);
});

// TODO use Cypress.env to share (and bring in) some of the contants used.
Expand Down

0 comments on commit c52c5e5

Please sign in to comment.