test: establish frontend gate taxonomy

This commit is contained in:
donghyeon-ka
2026-07-25 20:41:44 +09:00
parent 0a0b7263b3
commit 946cf407b0
11 changed files with 1384 additions and 2 deletions
+17
View File
@@ -0,0 +1,17 @@
// @vitest-environment jsdom
import { render, screen } from "@testing-library/react";
import { describe, expect, it } from "vitest";
function TestShell() {
return <main aria-label="application shell">ready</main>;
}
describe("component test level", () => {
it("renders an accessible application shell", () => {
render(<TestShell />);
expect(screen.getByRole("main", { name: "application shell" })).toHaveTextContent(
"ready",
);
});
});