10 lines
204 B
TypeScript
10 lines
204 B
TypeScript
import { defineConfig } from "@playwright/test";
|
|
|
|
export default defineConfig({
|
|
testDir: "./tests/e2e",
|
|
use: {
|
|
baseURL: process.env.BASE_URL || "http://127.0.0.1:5001",
|
|
headless: true
|
|
}
|
|
});
|