Skip to content

Commit

Permalink
test: cover 3 more lines in interactions.tx
Browse files Browse the repository at this point in the history
  • Loading branch information
senyai committed Dec 5, 2024
1 parent 5dc2d2d commit 94b3877
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/test/suite/renameSuite.ts
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,10 @@ export function RenameSuite(this: Suite): void {
.onFirstCall()
.callsFake(items => {
assert.ok(items instanceof Array);
assert.equal(items.length, 3);
assert.equal(items[0].label, '$(folder-opened) Open Dialog');
assert.equal(items[1].label, 'Extras');
assert.equal(items[2].label, '$(symbol-file) relocated.txt');
return Promise.resolve(items[0]);
});

Expand Down

0 comments on commit 94b3877

Please sign in to comment.