22 lines
579 B
TypeScript
22 lines
579 B
TypeScript
import { defineConfig, devices } from "@playwright/test";
|
|
|
|
export default defineConfig({
|
|
testDir: "./e2e",
|
|
fullyParallel: true,
|
|
retries: process.env.CI ? 2 : 0,
|
|
reporter: "list",
|
|
use: {
|
|
baseURL: "http://localhost:3000",
|
|
trace: "on-first-retry",
|
|
},
|
|
projects: [
|
|
{
|
|
name: "chromium",
|
|
use: { ...devices["Desktop Chrome"] },
|
|
},
|
|
],
|
|
// No webServer: web-tanstack tests run against the shared web-next backend
|
|
// (port 3000). When TanStack Start runtime is wired in a future plan, add
|
|
// a webServer block here pointing at port 3002.
|
|
});
|