Skip to content

Commit

Permalink
fix: card view failed cypress tests (#10699)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lily Kuang authored Aug 27, 2020
1 parent 8d94534 commit 7abdf53
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 7abdf53

Please sign in to comment.