Skip to content

Commit cc86052

Browse files
committed
lint
1 parent e5da06a commit cc86052

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/router.test.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -241,9 +241,7 @@ describe("router", () => {
241241
},
242242
);
243243
const router = createRouter({ endpoint }, { basePath: "/other-app" });
244-
const response = await router.handler(
245-
new Request("http://localhost/api/auth/get-session"),
246-
);
244+
const response = await router.handler(new Request("http://localhost/api/auth/get-session"));
247245
expect(response.status).toBe(200);
248246
const text = await response.text();
249247
expect(text).toBe("/other-app/api/auth/get-session");

0 commit comments

Comments
 (0)