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 (333B)


      1 import { defineConfig } from "@playwright/test";
      2 
      3 export default defineConfig({
      4   testDir: ".",
      5   testMatch: "index.ts",
      6   timeout: 900_000,
      7   retries: 0,
      8   workers: 1,
      9   reporter: [["list"]],
     10   use: {
     11     headless: true,
     12     viewport: { width: 1280, height: 720 },
     13     actionTimeout: 10_000,
     14     navigationTimeout: 10_000,
     15   },
     16 });

Impressum · Datenschutz