Skip to content

Commit 67d1120

Browse files
test: skip 'should forceStop without cleanup' on inproc
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent b2ca0d5 commit 67d1120

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

nodejs/test/e2e/client.e2e.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { ChildProcess } from "child_process";
22
import { describe, expect, it, onTestFinished } from "vitest";
33
import { CopilotClient, approveAll, RuntimeConnection } from "../../src/index.js";
4+
import { isInProcessTransport } from "./harness/sdkTestContext.js";
45

56
function onTestFinishedForceStop(client: CopilotClient) {
67
onTestFinished(async () => {
@@ -106,7 +107,7 @@ describe("Client", () => {
106107
60_000
107108
);
108109

109-
it("should forceStop without cleanup", async () => {
110+
it.skipIf(isInProcessTransport)("should forceStop without cleanup", async () => {
110111
const client = new CopilotClient({});
111112
onTestFinishedForceStop(client);
112113

0 commit comments

Comments
 (0)