/** * @license * Copyright 2026 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import assert from 'node:assert'; import type {TestScenario} from '../eval_gemini.ts'; export const scenario: TestScenario = { prompt: 'Check a11y issues on the current page', maxTurns: 1, expectations: calls => { assert.strictEqual(calls.length, 1); assert.ok( calls[0].name === 'lighthouse_audit', 'First call should be lighthouse_audit', ); }, };