Skip to content

Commit d3ddb4c

Browse files
committed
stricted path for healthcheck url
1 parent 2cd7547 commit d3ddb4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mocks/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ if (!port) {
1717
throw new Error("API_BASE_URL must include a port number");
1818
}
1919

20-
const healthHandler = http.get("*/health", () => {
20+
const healthHandler = http.get("/health", () => {
2121
return HttpResponse.json({ status: "ok" });
2222
});
2323

0 commit comments

Comments
 (0)