Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
alisonlhart committed Oct 3, 2024
1 parent 1010631 commit e0353b5
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions test/ui-test/walkthroughUiTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export function walkthroughUiTest(): void {
await commandInput.setText("Discover Ansible Development Tools");
await commandInput.confirm();

await sleep(1000);
await sleep(5000);

// Select the editor window
const welcomeTab = await editorView.getTabByTitle("Welcome");
Expand All @@ -31,8 +31,10 @@ export function walkthroughUiTest(): void {
By.xpath("//div[contains(@class, 'getting-started-category') ]"),
)
.getText();
expect(titleText.includes("Discover Ansible Development Tools"), "Discover Ansible Development Tools title not found").to.be
.true;
expect(
titleText.includes("Discover Ansible Development Tools"),
"Discover Ansible Development Tools title not found",
).to.be.true;

// Locate one of the steps
const stepText = await welcomeTab
Expand Down

0 comments on commit e0353b5

Please sign in to comment.