Skip to content

Commit

Permalink
adding telemetry and removing time comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
cauemarcondes committed Feb 15, 2021
1 parent 33efbe6 commit 5677d43
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ describe('TransactionOverview', () => {
});

expect(history.location.search).toEqual(
'?transactionType=secondType&rangeFrom=now-15m&rangeTo=now&comparisonEnabled=true&comparisonType=day'
'?transactionType=secondType&rangeFrom=now-15m&rangeTo=now'
);
expect(getByText(container, 'firstType')).toBeInTheDocument();
expect(getByText(container, 'secondType')).toBeInTheDocument();
Expand All @@ -142,7 +142,7 @@ describe('TransactionOverview', () => {

expect(history.push).toHaveBeenCalled();
expect(history.location.search).toEqual(
'?transactionType=firstType&rangeFrom=now-15m&rangeTo=now&comparisonEnabled=true&comparisonType=day'
'?transactionType=firstType&rangeFrom=now-15m&rangeTo=now'
);
});
});
Expand Down

0 comments on commit 5677d43

Please sign in to comment.