AllAi/apps/web/playwright.config.ts
2025-11-14 21:54:04 +03:00

9 lines
187 B
TypeScript

import { defineConfig } from '@playwright/test';
export default defineConfig({
testDir: './tests/e2e',
use: {
baseURL: process.env.BASE_URL ?? 'http://localhost:3000'
}
});