We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5da06a commit cc86052Copy full SHA for cc86052
src/router.test.ts
@@ -241,9 +241,7 @@ describe("router", () => {
241
},
242
);
243
const router = createRouter({ endpoint }, { basePath: "/other-app" });
244
- const response = await router.handler(
245
- new Request("http://localhost/api/auth/get-session"),
246
- );
+ const response = await router.handler(new Request("http://localhost/api/auth/get-session"));
247
expect(response.status).toBe(200);
248
const text = await response.text();
249
expect(text).toBe("/other-app/api/auth/get-session");
0 commit comments