项目文件夹

文件
zyzyzyryxy f028f8c075 chore: Update eslint rule to require empty line after license notice. (#784)
We should make sure there is always an empty line after license notice,
otherwise it gets dropped during build if it happens to be before import
statement.

---------

Co-authored-by: Piotr Paulski <piotrpaulski@chromium.org>
2026-01-16 16:35:45 +00:00

23 行
495 B
TypeScript

/**
* @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: 'Navigate to https://developers.chrome.com and tell me if it worked.',
maxTurns: 1,
expectations: calls => {
assert.deepStrictEqual(calls, [
{
name: 'navigate_page',
args: {url: 'https://developers.chrome.com'},
},
]);
},
};