Skip to content

Commit

Permalink
update test
Browse files Browse the repository at this point in the history
  • Loading branch information
hughhhh committed Jan 4, 2022
1 parent e724a0f commit d9f69f6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const mockedProps = {
};
const stoppedQueryProps = { ...mockedProps, query: stoppedQuery };
const runningQueryProps = { ...mockedProps, query: runningQuery };
const fetchQueryProps = {
const fetchingQueryProps = {
...mockedProps,
query: {
dbId: 1,
Expand Down Expand Up @@ -193,7 +193,7 @@ test('should render running/pending/fetching query', () => {
});

test('should render fetching w/ 100 progress query', () => {
const wrapper = shallow(<ResultSet {...runningQueryProps} />);
const wrapper = shallow(<ResultSet {...fetchingQueryProps} />);
expect(wrapper.find(Loading)).toExist();
});

Expand Down

0 comments on commit d9f69f6

Please sign in to comment.