Skip to content

Commit

Permalink
fix prettier errors|
Browse files Browse the repository at this point in the history
  • Loading branch information
jordan-ae committed Mar 7, 2024
1 parent b04b971 commit e99542f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/people/widgetViews/__tests__/OrgHeader.spec.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ import { uiStore } from '../../../store/ui.ts';
import * as helpers from '../../../helpers/helpers-extended.ts';

// eslint-disable-next-line @typescript-eslint/no-empty-function
jest.mock('remark-gfm', () => {})
jest.mock('remark-gfm', () => {});

// eslint-disable-next-line @typescript-eslint/no-empty-function
jest.mock('rehype-raw', () => {})
jest.mock('rehype-raw', () => {});

jest.mock('../../../store/main.ts', () => ({
mainStore: {
Expand Down Expand Up @@ -107,7 +107,7 @@ describe('OrgHeader Component', () => {

await waitFor(() => {
expect(screen.getByText('Post a Bounty')).toBeInTheDocument();
fireEvent.click(screen.getByText("Post a Bounty"))
fireEvent.click(screen.getByText('Post a Bounty'));
});

fireEvent.click(screen.getByText('Start'));
Expand Down Expand Up @@ -135,7 +135,7 @@ describe('OrgHeader Component', () => {
userEvent.click(await screen.findByText('Decide Later'));
});
expect(screen.queryByText('Finish')).toBeInTheDocument();
expect(screen.getByText("title")).toBeInTheDocument();
expect(screen.getByText('title')).toBeInTheDocument();
});
});

Expand Down

0 comments on commit e99542f

Please sign in to comment.