Skip to content

Commit

Permalink
fix: card view failed cypress tests (apache#10699)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lily Kuang authored and Ofeknielsen committed Oct 5, 2020
1 parent 2fb3d60 commit fb17e7a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ describe('chart card view', () => {
cy.login();
cy.server();
cy.visit(CHART_LIST);
cy.get('[data-test="card-view"]').click();
});

it('should load cards', () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ describe('chart filters', () => {
cy.login();
cy.server();
cy.visit(CHART_LIST);
cy.get('[data-test="card-view"]').click();
});

it('should filter by owners correctly', () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ describe('Dashboard card view', () => {
cy.login();
cy.server();
cy.visit(DASHBOARD_LIST);
cy.get('[data-test="card-view"]').click();
});

it('should load cards', () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ describe('dashboard filters', () => {
cy.login();
cy.server();
cy.visit(DASHBOARD_LIST);
cy.get('[data-test="card-view"]').click();
});

it('should filter by owners correctly', () => {
Expand Down

0 comments on commit fb17e7a

Please sign in to comment.