SPB Git

spb/llmindex Public

The discriminative, contamination-resistant, fully transparent LLM ranking — updated live.

TypeScript 77.9% TeX 15.2% Python 3.7% SQL 1.4% JavaScript 1.1% Shell 0.5%
597 B · 24 lines typescript
Raw Blame History
1/**2 * llmindex.io — Playwright e2e configuration3 * Author:  Simon-Pierre Boucher4 * Contact: contact@spboucher.ai5 * License: Proprietary — © Simon-Pierre Boucher, all rights reserved6 */7import { defineConfig } from '@playwright/test';89export default defineConfig({10  testDir: './e2e',11  timeout: 30_000,12  use: {13    baseURL: process.env.E2E_BASE_URL ?? 'http://127.0.0.1:3000',14  },15  webServer: process.env.E2E_BASE_URL16    ? undefined17    : {18        command: 'pnpm dev',19        url: 'http://127.0.0.1:3000',20        reuseExistingServer: true,21        timeout: 120_000,22      },23});24