Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix test case
Browse files Browse the repository at this point in the history
testforstephen committed Nov 24, 2023
1 parent bf04268 commit 52f343a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/ui/command.test.ts
Original file line number Diff line number Diff line change
@@ -121,7 +121,7 @@ describe("Command Tests", function() {
assert.ok(quickPick, `Quickpick item "src/main/java" should be found`);
await quickPick!.click();
inputBox = await InputBox.create();
assert.ok(await inputBox.getPlaceHolder() === "Input the class name", `InputBox "Input the class name" should appear`);
assert.ok(await inputBox.getPlaceHolder() === "Enter the Java file name for class/interface/enum/record/@interface", `InputBox "Enter the Java file name" should appear`);
await inputBox.setText("App2");
await inputBox.confirm();
await sleep(1000);

0 comments on commit 52f343a

Please sign in to comment.