Skip to content

Commit 9614991

Browse files
committed
Fix types
1 parent 94d63f5 commit 9614991

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/integrations/terminal/__tests__/TerminalProcessExec.bash.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ async function testTerminalCommand(
140140
processId: Promise.resolve(123),
141141
creationOptions: {},
142142
exitStatus: undefined,
143-
state: { isInteractedWith: true },
143+
state: { isInteractedWith: true, shell: undefined },
144144
dispose: jest.fn(),
145145
hide: jest.fn(),
146146
show: jest.fn(),

src/integrations/terminal/__tests__/TerminalProcessExec.cmd.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ async function testCmdCommand(
8787
processId: Promise.resolve(123),
8888
creationOptions: {},
8989
exitStatus: undefined,
90-
state: { isInteractedWith: true },
90+
state: { isInteractedWith: true, shell: undefined },
9191
dispose: jest.fn(),
9292
hide: jest.fn(),
9393
show: jest.fn(),

src/integrations/terminal/__tests__/TerminalProcessExec.pwsh.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ async function testPowerShellCommand(
8989
processId: Promise.resolve(123),
9090
creationOptions: {},
9191
exitStatus: undefined,
92-
state: { isInteractedWith: true },
92+
state: { isInteractedWith: true, shell: undefined },
9393
dispose: jest.fn(),
9494
hide: jest.fn(),
9595
show: jest.fn(),

0 commit comments

Comments
 (0)