Files
home/Projects/kompose/news/apps/backend/tests/integration/user.test.ts

10 lines
260 B
TypeScript
Raw Normal View History

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);
});
});