Skip to content

Commit 5f0ce45

Browse files
committed
Fix tests
1 parent adf0bb7 commit 5f0ce45

1 file changed

Lines changed: 0 additions & 16 deletions

File tree

typescript/acp.test.ts

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ import {
2626
PROTOCOL_VERSION,
2727
ListCommandsRequest,
2828
ListCommandsResponse,
29-
RunCommandRequest,
3029
} from "./acp.js";
3130

3231
describe("Connection", () => {
@@ -86,9 +85,6 @@ describe("Connection", () => {
8685
): Promise<ListCommandsResponse> {
8786
throw new Error("not implemented");
8887
}
89-
async runCommand(_: RunCommandRequest): Promise<void> {
90-
throw new Error("not implemented");
91-
}
9288
}
9389

9490
// Set up connections
@@ -186,9 +182,6 @@ describe("Connection", () => {
186182
): Promise<ListCommandsResponse> {
187183
throw new Error("not implemented");
188184
}
189-
async runCommand(_: RunCommandRequest): Promise<void> {
190-
throw new Error("not implemented");
191-
}
192185
}
193186

194187
new ClientSideConnection(
@@ -300,9 +293,6 @@ describe("Connection", () => {
300293
): Promise<ListCommandsResponse> {
301294
throw new Error("not implemented");
302295
}
303-
async runCommand(_: RunCommandRequest): Promise<void> {
304-
throw new Error("not implemented");
305-
}
306296
}
307297

308298
// Set up connections
@@ -439,9 +429,6 @@ describe("Connection", () => {
439429
): Promise<ListCommandsResponse> {
440430
throw new Error("not implemented");
441431
}
442-
async runCommand(_: RunCommandRequest): Promise<void> {
443-
throw new Error("not implemented");
444-
}
445432
}
446433

447434
// Create shared instances
@@ -546,9 +533,6 @@ describe("Connection", () => {
546533
): Promise<ListCommandsResponse> {
547534
throw new Error("not implemented");
548535
}
549-
async runCommand(_: RunCommandRequest): Promise<void> {
550-
throw new Error("not implemented");
551-
}
552536
}
553537

554538
const agentConnection = new ClientSideConnection(

0 commit comments

Comments
 (0)