Skip to content

Commit

Permalink
Prettier fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
huwshimi committed Jan 14, 2024
1 parent 1a6f0a8 commit 6b53eca
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions src/components/LogIn/LogIn.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -148,16 +148,12 @@ describe("LogIn", () => {
// for. This is necessary because we don't have a full store set up which
// can dispatch thunks (and we don't need to handle the thunk, just know it
// was dispatched).
jest
.spyOn(appThunks, "connectAndStartPolling")
.mockImplementation(
jest
.fn()
.mockReturnValue({
type: "connectAndStartPolling",
catch: jest.fn(),
}),
);
jest.spyOn(appThunks, "connectAndStartPolling").mockImplementation(
jest.fn().mockReturnValue({
type: "connectAndStartPolling",
catch: jest.fn(),
}),
);
const state = rootStateFactory.build({
general: generalStateFactory.withConfig().build({
config: configFactory.build({
Expand Down

0 comments on commit 6b53eca

Please sign in to comment.