diff --git a/src/integrations/terminal/__tests__/TerminalProcessExec.test.ts b/src/integrations/terminal/__tests__/TerminalProcessExec.test.ts index 0e719daa1b..afe6a4513a 100644 --- a/src/integrations/terminal/__tests__/TerminalProcessExec.test.ts +++ b/src/integrations/terminal/__tests__/TerminalProcessExec.test.ts @@ -14,6 +14,11 @@ jest.mock("vscode", () => { } return { + workspace: { + getConfiguration: jest.fn().mockReturnValue({ + get: jest.fn().mockReturnValue(null), + }), + }, window: { createTerminal: jest.fn(), onDidStartTerminalShellExecution: jest.fn().mockImplementation((handler) => {