Skip to content

Commit 8798fa1

Browse files
committed
fix(port): fix client default port
1 parent 39e7fc0 commit 8798fa1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/client/batch-mock-collector.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export interface BatchMockCollectorOptions {
1515
/**
1616
* TCP port exposed by {@link TestMockMCPServer}.
1717
*
18-
* @default 8080
18+
* @default 3002
1919
*/
2020
port?: number;
2121
/**
@@ -61,7 +61,7 @@ interface PendingRequest {
6161
const DEFAULT_TIMEOUT = 60_000;
6262
const DEFAULT_BATCH_DEBOUNCE_MS = 0;
6363
const DEFAULT_MAX_BATCH_SIZE = 50;
64-
const DEFAULT_PORT = 8080;
64+
const DEFAULT_PORT = 3002;
6565

6666
/**
6767
* Collects HTTP requests issued during a single macrotask and forwards them to

0 commit comments

Comments
 (0)