From e2e71d0ae4952af3bf88556a0373d7704d1ba34c Mon Sep 17 00:00:00 2001 From: Anthony Kim Date: Wed, 11 Sep 2024 10:42:10 -0700 Subject: [PATCH] remove junk --- src/test/common/terminals/service.unit.test.ts | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/test/common/terminals/service.unit.test.ts b/src/test/common/terminals/service.unit.test.ts index d1c2606c01f9..537fb5f78927 100644 --- a/src/test/common/terminals/service.unit.test.ts +++ b/src/test/common/terminals/service.unit.test.ts @@ -68,18 +68,6 @@ suite('Terminal Service', () => { shellIntegration: terminalShellIntegration.object, }; - // Add a listener to capture the event argument - // onDidEndTerminalShellExecutionEmitter.event((e) => { - // try { - // expect(e.execution.commandLine.value).to.equal(execution.commandLine.value); - // expect(e.exitCode).to.equal(exitCode); - // // resolve - // return; - // } catch (error) { - // console.error(error); - // } - // }); - terminalShellIntegration.setup((t) => t.executeCommand(TypeMoq.It.isAny())).returns(() => execution); terminalManager