loop-benchmarking

Controlled experiments across agentic coding configurations. Same task, one variable, what actually works.
git clone https://git.shiptheloop.com/loop-benchmarking.git
Log | Files | Refs | README

playwright.config.ts (263B)


      1 import { defineConfig } from "@playwright/test";
      2 
      3 export default defineConfig({
      4   testDir: ".",
      5   timeout: 60_000,
      6   retries: 0,
      7   workers: 1,
      8   use: {
      9     baseURL: "http://localhost:3000",
     10     headless: true,
     11     viewport: { width: 1280, height: 720 },
     12   },
     13 });

Impressum · Datenschutz