Files
iam-login/frontend/playwright.config.ts

9 lines
209 B
TypeScript

import { defineConfig } from "@playwright/test";
export default defineConfig({
testDir: "./tests",
use: {
baseURL: process.env.IAM_PREVIEW_URL ?? "http://127.0.0.1:18081",
headless: true,
},
});