feat: add sheet component and docs qa baseline

This commit is contained in:
2026-03-19 18:46:20 +08:00
parent 71ebb010b9
commit f318f94c9a
28 changed files with 1799 additions and 91 deletions
+16
View File
@@ -0,0 +1,16 @@
import { defineConfig } from "@playwright/test";
export default defineConfig({
testDir: "./tests/e2e",
timeout: 30_000,
use: {
baseURL: "http://127.0.0.1:6006",
trace: "retain-on-failure"
},
webServer: {
command: "pnpm --filter @ai-ui/docs storybook",
port: 6006,
reuseExistingServer: !process.env.CI,
timeout: 120_000
}
});