carbon-tokenization / backend /playwright.config.ts
tfrere's picture
tfrere HF Staff
test(backend): add Playwright E2E suite + deps for editor basics, chat persistence and publish
6a34a48
Raw
History Blame Contribute Delete
347 Bytes
import { defineConfig } from "@playwright/test";
export default defineConfig({
testDir: "./e2e",
timeout: 30_000,
retries: 0,
use: {
baseURL: "http://localhost:0", // replaced dynamically in fixtures
headless: true,
screenshot: "only-on-failure",
},
projects: [{ name: "chromium", use: { browserName: "chromium" } }],
});