Skip to content

Commit

Permalink
Create an Ansible environment walkthrough
Browse files Browse the repository at this point in the history
  • Loading branch information
alisonlhart committed Oct 3, 2024
1 parent f02af56 commit 1b47471
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions test/ui-test/walkthroughUiTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,12 @@ export function walkthroughUiTest(): void {
By.xpath("//div[contains(@class, 'step-list-container') ]"),
)
.getText();
expect(
stepText.includes("Create an Ansible playbook"),
"Create an Ansible playbook step not found",
).to.be.true;

expect(stepText).to.contain.oneOf([
"Create an Ansible playbook",
"tag in the status bar",
"Install the Ansible environment package",
]);
});
});
}

0 comments on commit 1b47471

Please sign in to comment.