Skip to content

Commit

Permalink
QueryStatsView.test.tsx
Browse files Browse the repository at this point in the history
Signed-off-by: Vanshika <[email protected]>
  • Loading branch information
Vanshikav123 committed Dec 22, 2023
1 parent fc22366 commit cc17c8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/ui/react-app/src/pages/graph/QueryStatsView.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ describe('QueryStatsView', () => {
expect(queryStatsView.prop('className')).toEqual('query-stats');
expect(queryStatsView.children().prop('className')).toEqual('float-right');
expect(queryStatsView.children().text()).toEqual(
'Load time: 100ms   Resolution: 5s   Result series: 10000   Trace ID: e575f9d4eab63a90cdc3dc4ef1b8dda0'
`Load time: ${queryStatsProps.loadTime}ms   Resolution: ${queryStatsProps.resolution}s   Result series: ${queryStatsProps.resultSeries}   Trace ID: ${queryStatsProps.traceID}`
);
});
});

0 comments on commit cc17c8f

Please sign in to comment.