9 lines
216 B
TypeScript
9 lines
216 B
TypeScript
import { defineConfig } from "@playwright/test";
|
|
|
|
export default defineConfig({
|
|
testDir: "./tests",
|
|
testIgnore: "**/unit/**",
|
|
use: { baseURL: process.env.WEB_URL || "http://127.0.0.1:4321" },
|
|
retries: 0,
|
|
});
|