workspace-ui-kit/__tests__/page.test.tsx
snc777 f6a781c47e initial commit
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-09 14:24:17 +09:00

9 lines
233 B
TypeScript

import { describe, it, expect } from "vitest";
describe("workspace-ui-kit smoke tests", () => {
it("page module can be imported", async () => {
const mod = await import("../app/page");
expect(mod).toBeDefined();
});
});