chromedevtools--chrome-devtools-mcp
f028f8c075
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>
23 行
495 B
TypeScript
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'},
|
|
},
|
|
]);
|
|
},
|
|
};
|