Skip to content

Commit f78ff55

Browse files
Apply suggested fix to tests/hono-e2e.test.ts from Copilot Autofix
Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com>
1 parent a253692 commit f78ff55

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/hono-e2e.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ describe("Hono + Honolate E2E", () => {
9393
it("GET /trigger-500 should return localized error response", async () => {
9494
before();
9595
// @ts-expect-error testing purposes
96-
const resDefault = await (await testApp["trigger-500"].$get({})).json();
96+
// @ts-expect-error - testClient type doesn't include trigger-500 route (valid for e2e test)
9797
// @ts-expect-error testing purposes
9898
const resEn = await (await testApp["trigger-500"].$get({
9999
query: { lang: "en" },

0 commit comments

Comments
 (0)