mirror of
https://github.com/Infisical/infisical.git
synced 2025-03-27 09:40:45 +00:00
10 lines
224 B
TypeScript
10 lines
224 B
TypeScript
describe("Status V1 Router", async () => {
|
|
test("Simple check", async () => {
|
|
const res = await testServer.inject({
|
|
method: "GET",
|
|
url: "/api/status"
|
|
});
|
|
expect(res.statusCode).toBe(200);
|
|
});
|
|
});
|