primer/agent-eval

Agent eval navigation

000-llm-as-a-judge

Prompt

Replace the Hello world content in src/App.tsx with a friendly empty state for a new project list. Include a heading and one short sentence encouraging the user to create their first project. Keep the existing App export and do not add dependencies.

Tests

import fs from 'node:fs/promises'
import path from 'node:path'
import {expect, test} from 'vitest'

const appPath = path.resolve(import.meta.dirname, 'src', 'App.tsx')
const app = await fs.readFile(appPath, 'utf8')

test('src/App.tsx exports the example app', () => {
  expect(app).toMatch(/export function App/)
})

Experiments

This scenario is not included in any experiments.