mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
Fix checkpoints test (#8803)
This commit is contained in:
parent
ad56791c3e
commit
19e06900ee
1 changed files with 3 additions and 3 deletions
|
|
@ -325,7 +325,7 @@ describe("Checkpoint functionality", () => {
|
|||
})
|
||||
expect(vscode.commands.executeCommand).toHaveBeenCalledWith(
|
||||
"vscode.changes",
|
||||
"errors.checkpoint_diff_to_current",
|
||||
"common:errors.checkpoint_diff_to_current",
|
||||
expect.any(Array),
|
||||
)
|
||||
})
|
||||
|
|
@ -350,7 +350,7 @@ describe("Checkpoint functionality", () => {
|
|||
})
|
||||
expect(vscode.commands.executeCommand).toHaveBeenCalledWith(
|
||||
"vscode.changes",
|
||||
"errors.checkpoint_diff_with_next",
|
||||
"common:errors.checkpoint_diff_with_next",
|
||||
expect.any(Array),
|
||||
)
|
||||
})
|
||||
|
|
@ -385,7 +385,7 @@ describe("Checkpoint functionality", () => {
|
|||
mode: "to-current",
|
||||
})
|
||||
|
||||
expect(vscode.window.showInformationMessage).toHaveBeenCalledWith("errors.checkpoint_no_changes")
|
||||
expect(vscode.window.showInformationMessage).toHaveBeenCalledWith("common:errors.checkpoint_no_changes")
|
||||
expect(vscode.commands.executeCommand).not.toHaveBeenCalled()
|
||||
})
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue