Skip to content

Commit

Permalink
fixing build
Browse files Browse the repository at this point in the history
  • Loading branch information
arzumorales committed May 22, 2024
1 parent 7fb999e commit b01a24c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions features/support/steps.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,10 @@ Given('User is on the Git-based Items page', async () => {
await page.getByText('Git-based Items').click();
})

Given('User is on the Jira-based Items page', async () => {
await page.getByText('Jira-based Items').click();
})

Then('User should see the Git-based Items page', async () => {
const title = await page.getByText('Git Based Items').innerText();
expect(title).toEqual('Git Based Items');
Expand Down

0 comments on commit b01a24c

Please sign in to comment.