chore(extension): use free port (#735)

This commit is contained in:
Yury Semikhatsky
2025-07-24 10:25:13 -07:00
committed by GitHub
parent da8a244f33
commit c72d0320f4
3 changed files with 5 additions and 5 deletions

View File

@@ -22,7 +22,7 @@ import { filteredTools } from '../tools.js';
import type { FullConfig } from '../config.js';
export async function runWithExtension(config: FullConfig) {
const contextFactory = await startCDPRelayServer(9225, config.browser.launchOptions.channel || 'chrome');
const contextFactory = await startCDPRelayServer(config.browser.launchOptions.channel || 'chrome');
const server = new Server(config, filteredTools(config), contextFactory);
server.setupExitWatchdog();