Skip to content

Commit db398ed

Browse files
fix: Update VSCode to (^1.93.0) (main) (#399)
Co-authored-by: Jason3S <3740137+Jason3S@users.noreply.github.com> Co-authored-by: Jason Dent <jason@streetsidesoftware.nl>
1 parent 0223914 commit db398ed

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
"@jest/globals": "^29.7.0",
5454
"@tsconfig/node20": "^20.1.4",
5555
"@types/node": "^20.16.5",
56-
"@types/vscode": "^1.92.0",
56+
"@types/vscode": "^1.93.0",
5757
"eslint": "^9.9.1",
5858
"eslint-plugin-n": "^17.10.2",
5959
"eslint-plugin-simple-import-sort": "^12.1.1",

pnpm-lock.yaml

Lines changed: 7 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/vscode-mock.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,9 +180,10 @@ type NotImplemented =
180180
| 'TerminalLink'
181181
| 'TerminalLocation'
182182
| 'TerminalProfile'
183-
| 'TestCoverage'
183+
| 'TerminalShellExecutionCommandLineConfidence'
184184
| 'TestCoverageCount'
185185
| 'TestMessage'
186+
| 'TestMessageStackFrame'
186187
| 'TestRunProfileKind'
187188
| 'TestRunRequest'
188189
| 'tests'

src/vscode/window.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ export function createWindow(jest: TestFramework, workspace: Workspace): Window
5353
onDidChangeActiveTextEditor: jest.fn(),
5454
onDidChangeNotebookEditorSelection: jest.fn(),
5555
onDidChangeNotebookEditorVisibleRanges: jest.fn(),
56+
onDidChangeTerminalShellIntegration: jest.fn(),
5657
onDidChangeTerminalState: jest.fn(),
5758
onDidChangeTextEditorOptions: jest.fn(),
5859
onDidChangeTextEditorSelection: jest.fn(),
@@ -61,6 +62,8 @@ export function createWindow(jest: TestFramework, workspace: Workspace): Window
6162
onDidChangeVisibleNotebookEditors: jest.fn(),
6263
onDidChangeVisibleTextEditors: jest.fn(),
6364
onDidChangeWindowState: jest.fn(),
65+
onDidEndTerminalShellExecution: jest.fn(),
66+
onDidStartTerminalShellExecution: jest.fn(),
6467
onDidCloseTerminal: jest.fn(),
6568
onDidOpenTerminal: jest.fn(),
6669
registerCustomEditorProvider: jest.fn(),

0 commit comments

Comments
 (0)