style: refine acrylic workbench surfaces

This commit is contained in:
2026-07-15 17:07:32 +08:00
parent 8978f2d167
commit 16ecb69d00
41 changed files with 838 additions and 606 deletions
+17
View File
@@ -0,0 +1,17 @@
import { defineConfig } from "playwright/test";
export default defineConfig({
testDir: "./tests/browser",
testMatch: "**/*.e2e.ts",
timeout: 30_000,
use: {
baseURL: "http://127.0.0.1:3000",
viewport: { width: 1440, height: 900 }
},
webServer: {
command: "pnpm dev",
reuseExistingServer: true,
timeout: 120_000,
url: "http://127.0.0.1:3000"
}
});