Files
home/Projects/kompose/news/apps/backend/tests/integration/user.test.ts
2025-10-08 10:35:48 +02:00

10 lines
260 B
TypeScript

import { describe, it, expect } from "vitest"
import { request } from "./helpers/request"
describe("First test", () => {
it("Should return hello world", async () => {
const response = await request.get("/")
expect(response.status).toBe(200)
})
})