Skip to content

Commit

Permalink
fix test type
Browse files Browse the repository at this point in the history
  • Loading branch information
edwardgou-sentry committed Nov 22, 2024
1 parent 7fe4493 commit 606c7bc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function renderWithProvider({
onSearch,
}: ComponentProps<typeof SpansSearchBar>) {
return render(
<SpanTagsProvider dataset={DiscoverDatasets.SPANS_EAP}>
<SpanTagsProvider dataset={DiscoverDatasets.SPANS_EAP} enabled>
<SpansSearchBar widgetQuery={widgetQuery} onSearch={onSearch} />
</SpanTagsProvider>
);
Expand Down
2 changes: 1 addition & 1 deletion static/app/views/explore/hooks/useGroupBys.spec.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ describe('useGroupBys', function () {
}

render(
<SpanTagsProvider dataset={DiscoverDatasets.SPANS_EAP}>
<SpanTagsProvider dataset={DiscoverDatasets.SPANS_EAP} enabled>
<TestPage />
</SpanTagsProvider>,
{disableRouterMocks: true}
Expand Down
2 changes: 1 addition & 1 deletion static/app/views/explore/hooks/useResultsMode.spec.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ describe('useResultMode', function () {
}

render(
<SpanTagsProvider dataset={DiscoverDatasets.SPANS_EAP}>
<SpanTagsProvider dataset={DiscoverDatasets.SPANS_EAP} enabled>
<TestPage />
</SpanTagsProvider>,
{disableRouterMocks: true}
Expand Down

0 comments on commit 606c7bc

Please sign in to comment.