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

8 lines
158 B
TypeScript
Raw Normal View History

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