Skip to content

Commit

Permalink
Increase test timeout
Browse files Browse the repository at this point in the history
Increase test timeout to hopefully resolve issue where
`waitForElementToBeRemoved` times out:
testing-library/dom-testing-library#1204
  • Loading branch information
brianlove committed Oct 18, 2023
1 parent a1ecc50 commit 89919de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/gui-v2/src/components/ListView.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ describe("ListView", () => {
for ( const column of INITIAL_COLUMNS.filter(e => e !== REMOVED_COLUMN) ) {
expect(screen.getByRole('columnheader', { name: new RegExp(column, 'i') }));
}
}, 40000);
}, 60000);
});

describe('groups', () => {
Expand Down Expand Up @@ -106,6 +106,6 @@ describe("ListView", () => {
expect(getByRole(table, 'row', { name: /Google/ })).toBeVisible();
expect(getByRole(table, 'row', { name: /Apple/ })).toBeVisible();
expect(getByRole(table, 'row', { name: /3M/ })).toBeVisible();
}, 30000);
}, 60000);
});
});

0 comments on commit 89919de

Please sign in to comment.