Files
hipmi/test/coba.test.ts
2025-01-31 07:41:16 +08:00

10 lines
238 B
TypeScript

import { prisma } from "@/app/lib";
import { describe, test, expect } from "bun:test";
describe("coba test", () => {
test("coba", async () => {
const user = await prisma.user.findMany();
expect(user).not.toBeEmpty();
});
});