Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: fix msg api failed #11532

Merged
merged 1 commit into from
May 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion packages/tests/src/utils/vscodeOperation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -935,6 +935,7 @@ export async function createNewProject(
await input.selectQuickPick(CreateProjectQuestion.MessageExtension);
await input.selectQuickPick("Custom Search Results");
await input.selectQuickPick("Start with a new API");
await input.selectQuickPick("None");
await driver.sleep(Timeout.input);
// Choose programming language
if (lang) {
Expand All @@ -949,7 +950,8 @@ export async function createNewProject(
"https://piercerepairsapi.azurewebsites.net/openapi.yml";
await input.selectQuickPick(CreateProjectQuestion.MessageExtension);
await input.selectQuickPick("Custom Search Results");
await input.selectQuickPick("Start with an OpenAPI Description Document");
await input.setText("Start with an OpenAPI Description Document");
await input.confirm();
await input.selectQuickPick(
"Enter OpenAPI Description Document Location"
);
Expand Down
Loading