项目文件夹

文件
Alex Rudenko 47a50ca84c chore: split cli tests (#1779)
splits cli test that might reach the test file timeout more often.
2026-04-01 07:38:43 +00:00

36 行
847 B
TypeScript

/**
* @license
* Copyright 2026 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import assert from 'node:assert';
import {describe, it, afterEach, beforeEach} from 'node:test';
import {assertDaemonIsNotRunning, runCli} from '../utils.js';
describe('chrome-devtools', () => {
beforeEach(async () => {
await runCli(['stop']);
await assertDaemonIsNotRunning();
});
afterEach(async () => {
await runCli(['stop']);
await assertDaemonIsNotRunning();
});
it('forwards disclaimers to stderr on start', async () => {
const result = await runCli(['start']);
assert.strictEqual(
result.status,
0,
`start command failed: ${result.stderr}`,
);
assert(
result.stderr.includes('chrome-devtools-mcp exposes content'),
'Disclaimer not found in stderr on start',
);
});
});