Skip to content

Commit

Permalink
prettier fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ChetanKarwa committed Jan 28, 2024
1 parent 0d900c0 commit 8b402ad
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/people/widgetViews/__tests__/WidgetSwitchViewer.spec.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,14 @@ describe('WidgetSwitchViewer Component', () => {
});

// Render the component with a selected widget and empty lists
render(<WidgetSwitchViewer selectedWidget="wanted" currentItems={0} totalBounties={0} languageString="Typescript"/>);
render(
<WidgetSwitchViewer
selectedWidget="wanted"
currentItems={0}
totalBounties={0}
languageString="Typescript"
/>
);

// Assert that <NoResults /> is present in the document
expect(screen.getByText(/No results/i)).toBeInTheDocument();
Expand Down

0 comments on commit 8b402ad

Please sign in to comment.