inference-playground / playwright.config.ts
Thomas G. Lopes
add tests (#88)
a76eef5 unverified
raw
history blame
207 Bytes
import { defineConfig } from "@playwright/test";
export default defineConfig({
webServer: {
command: "npm run build && npm run preview",
port: 4173,
timeout: 1000 * 60 * 10,
},
testDir: "e2e",
});