alepha
Version:
Easy-to-use modern TypeScript framework for building many kind of applications.
26 lines (21 loc) • 766 B
text/typescript
import { Alepha } from "alepha";
import { ServerProvider } from "alepha/server";
import { describe, it } from "vitest";
import { AlephaServerMetrics } from "../index.ts";
describe("ServerMetricsProvider", () => {
it("should expose metrics endpoint with process metrics", async ({
expect,
}) => {
const alepha = Alepha.create().with(AlephaServerMetrics);
await alepha.start();
const resp = await fetch(
`${alepha.inject(ServerProvider).hostname}/metrics`,
);
expect(resp.status).toBe(200);
const text = await resp.text();
expect(text).toContain("process_cpu_system_seconds_total");
expect(text).toContain("process_cpu_seconds_total");
expect(text).toContain("process_start_time_seconds");
// etc...
});
});