Skip to content

Commit

Permalink
try to fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
raejohanek committed Nov 22, 2024
1 parent 4cc1ac8 commit 44e9f1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cypress/component/DataSearch/dataset_search_table.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ describe('Dataset Search Table tests', () => {
{method: 'POST', url: '**/api/dataset/search/index'}, handler);
mount(<DatasetSearchTable {...props} />);
cy.get('#participantCountMax-range-input').clear().type('50');
cy.wait(2500).then(() => {
cy.wait(3000).then(() => {
expect(filtered).to.be.true;
});
});
Expand All @@ -80,7 +80,7 @@ describe('Dataset Search Table tests', () => {
cy.intercept({method: 'POST', url: '**/api/dataset/search/index'}, handler);
mount(<DatasetSearchTable {...props} />);
cy.get('#participantCountMin-range-input').clear().type('test');
cy.wait(2500).then(() => {
cy.wait(3000).then(() => {
expect(filtered).to.be.true;
});
});
Expand Down

0 comments on commit 44e9f1c

Please sign in to comment.