mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-07 08:26:51 +00:00
Fix tests
This commit is contained in:
parent
7282e02de3
commit
901d769bfd
2 changed files with 10 additions and 0 deletions
|
|
@ -52,6 +52,11 @@ const vscode = {
|
|||
this.id = id
|
||||
}
|
||||
},
|
||||
ExtensionMode: {
|
||||
Production: 1,
|
||||
Development: 2,
|
||||
Test: 3,
|
||||
},
|
||||
}
|
||||
|
||||
module.exports = vscode
|
||||
|
|
|
|||
|
|
@ -108,6 +108,11 @@ jest.mock("vscode", () => ({
|
|||
uriScheme: "vscode",
|
||||
language: "en",
|
||||
},
|
||||
ExtensionMode: {
|
||||
Production: 1,
|
||||
Development: 2,
|
||||
Test: 3,
|
||||
},
|
||||
}))
|
||||
|
||||
// Mock sound utility
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue