chromedevtools--chrome-devtools-mcp
47a50ca84c
splits cli test that might reach the test file timeout more often.
40 行
824 B
TypeScript
40 行
824 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,
|
|
assertDaemonIsRunning,
|
|
runCli,
|
|
} from '../utils.js';
|
|
|
|
describe('chrome-devtools', () => {
|
|
beforeEach(async () => {
|
|
await runCli(['stop']);
|
|
await assertDaemonIsNotRunning();
|
|
});
|
|
|
|
afterEach(async () => {
|
|
await runCli(['stop']);
|
|
await assertDaemonIsNotRunning();
|
|
});
|
|
|
|
it('reports daemon status correctly', async () => {
|
|
await assertDaemonIsNotRunning();
|
|
|
|
const startResult = await runCli(['start']);
|
|
assert.strictEqual(
|
|
startResult.status,
|
|
0,
|
|
`start command failed: ${startResult.stderr}`,
|
|
);
|
|
|
|
await assertDaemonIsRunning();
|
|
});
|
|
});
|