2025-10-10 16:43:21 +02:00
|
|
|
import { describe, it, expect } from "vitest";
|
|
|
|
|
import { request } from "./helpers/request";
|
2025-10-08 10:35:48 +02:00
|
|
|
|
|
|
|
|
describe("First test", () => {
|
2025-10-10 16:43:21 +02:00
|
|
|
it("Should return hello world", async () => {
|
|
|
|
|
const response = await request.get("/");
|
|
|
|
|
expect(response.status).toBe(200);
|
|
|
|
|
});
|
|
|
|
|
});
|