Skip to content

Commit

Permalink
fix: Update VSCode to (^1.93.0) (main) (#399)
Browse files Browse the repository at this point in the history
Co-authored-by: Jason3S <[email protected]>
Co-authored-by: Jason Dent <[email protected]>
  • Loading branch information
3 people authored Sep 7, 2024
1 parent 0223914 commit db398ed
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"@jest/globals": "^29.7.0",
"@tsconfig/node20": "^20.1.4",
"@types/node": "^20.16.5",
"@types/vscode": "^1.92.0",
"@types/vscode": "^1.93.0",
"eslint": "^9.9.1",
"eslint-plugin-n": "^17.10.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
Expand Down
9 changes: 7 additions & 2 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion src/vscode-mock.ts
Original file line number Diff line number Diff line change
Expand Up @@ -180,9 +180,10 @@ type NotImplemented =
| 'TerminalLink'
| 'TerminalLocation'
| 'TerminalProfile'
| 'TestCoverage'
| 'TerminalShellExecutionCommandLineConfidence'
| 'TestCoverageCount'
| 'TestMessage'
| 'TestMessageStackFrame'
| 'TestRunProfileKind'
| 'TestRunRequest'
| 'tests'
Expand Down
3 changes: 3 additions & 0 deletions src/vscode/window.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ export function createWindow(jest: TestFramework, workspace: Workspace): Window
onDidChangeActiveTextEditor: jest.fn(),
onDidChangeNotebookEditorSelection: jest.fn(),
onDidChangeNotebookEditorVisibleRanges: jest.fn(),
onDidChangeTerminalShellIntegration: jest.fn(),
onDidChangeTerminalState: jest.fn(),
onDidChangeTextEditorOptions: jest.fn(),
onDidChangeTextEditorSelection: jest.fn(),
Expand All @@ -61,6 +62,8 @@ export function createWindow(jest: TestFramework, workspace: Workspace): Window
onDidChangeVisibleNotebookEditors: jest.fn(),
onDidChangeVisibleTextEditors: jest.fn(),
onDidChangeWindowState: jest.fn(),
onDidEndTerminalShellExecution: jest.fn(),
onDidStartTerminalShellExecution: jest.fn(),
onDidCloseTerminal: jest.fn(),
onDidOpenTerminal: jest.fn(),
registerCustomEditorProvider: jest.fn(),
Expand Down

0 comments on commit db398ed

Please sign in to comment.