mirror of
https://github.com/jcreek/AutomatedAssessmentFeedbackAgent.git
synced 2026-07-12 18:43:49 +00:00
10 lines
180 B
TypeScript
10 lines
180 B
TypeScript
import { defineConfig } from '@playwright/test';
|
|
|
|
export default defineConfig({
|
|
use: {
|
|
baseURL: 'http://localhost:5173',
|
|
},
|
|
testDir: './tests/bdd',
|
|
timeout: 30000,
|
|
});
|