Skip to content

Commit c28ab42

Browse files
committed
fix value in api test
1 parent c395276 commit c28ab42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/tests-e2e/tests/pagesRouter/catch-all-optional.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ test.describe("Catch-all optional route in root should work", () => {
2626
const response = await request.get("/api/hello");
2727
expect(response.status()).toBe(200);
2828
const body = await response.json();
29-
expect(body).toEqual({ hello: "world" });
29+
expect(body).toEqual({ hello: "OpenNext rocks!" });
3030
});
3131
});

0 commit comments

Comments
 (0)