Skip to content

Commit 5d19c97

Browse files
committed
fix(test): add missing CodeActionKind mock in vscode.js
1 parent 107d16e commit 5d19c97

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/__mocks__/vscode.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,10 @@ const vscode = {
8888
Directory: 2,
8989
SymbolicLink: 64,
9090
},
91+
CodeActionKind: {
92+
QuickFix: { value: "quickfix" }, // Match the structure in ClineProvider.test.ts
93+
RefactorRewrite: { value: "refactor.rewrite" }, // Match the structure in ClineProvider.test.ts
94+
},
9195
TabInputText: class {
9296
constructor(uri) {
9397
this.uri = uri

0 commit comments

Comments
 (0)