Files
GMW/services/backend/tests/placeholder.test.ts
T

8 lines
158 B
TypeScript
Raw Normal View History

2026-06-09 15:40:40 +07:00
import { describe, it, expect } from "vitest";
describe("backend", () => {
it("should load without errors", () => {
expect(true).toBe(true);
});
});