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 auxten committed Nov 20, 2020
1 parent b1f9c85 commit 4a9bc4f
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 4a9bc4f

Please sign in to comment.