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 d0556f8 commit c033344
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cypress/component/DataSearch/dataset_search_table.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ describe('Dataset Search Table tests', () => {
beforeEach(() => {
cy.initApplicationConfig();
cy.stub(TerraDataRepo, 'listSnapshotsByDatasetIds').returns({});
cy.stub(DataSet, 'searchDatasetIndex').returns({});
cy.stub(DataSet, 'searchDatasetIndex').returns(Promise.resolve([]));
mount(<DatasetSearchTable {...props} />);
});

Expand Down

0 comments on commit c033344

Please sign in to comment.