Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | import { API_BASE_URL } from "../const";
/**
* Simple backend connectivity test
*/
export async function getHealth(): Promise<string> {
if (!API_BASE_URL) {
throw new Error("API_BASE_URL is not defined");
}
const response = await fetch(`${API_BASE_URL}/api/health`);
if (!response.ok) {
throw new Error(`Backend error: ${response.status}`);
}
return response.text();
}
|