9 lines
187 B
TypeScript
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'
|
|
}
|
|
});
|