ai-research-survey

Systematic scan of agentic development research. What's signal, what's noise.
git clone https://git.shiptheloop.com/ai-research-survey.git
Log | Files | Refs

playwright.config.ts (388B)


      1 import { defineConfig } from '@playwright/test';
      2 
      3 export default defineConfig({
      4   testDir: './tests',
      5   timeout: 30000,
      6   use: {
      7     baseURL: 'http://localhost:4174',
      8     headless: true,
      9   },
     10   webServer: {
     11     command: 'npx vite preview --port 4174',
     12     port: 4174,
     13     reuseExistingServer: false,
     14   },
     15   projects: [
     16     { name: 'chromium', use: { browserName: 'chromium' } },
     17   ],
     18 });

Impressum · Datenschutz