Skip to content

Commit

Permalink
Chore: Ensure exact text match 'In Progress' in test 3I
Browse files Browse the repository at this point in the history
Make exact text match 'In Progress' in test 3I assertion as it is also taking in progress of
  • Loading branch information
kneerose committed Jul 5, 2024
1 parent a601d5b commit 68b8374
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ test.describe("Temporary DReps", () => {
.click();

await expect(
dRepPage.locator("span").filter({ hasText: "In Progress" })
dRepPage.locator("span").filter({ hasText: /^In Progress$/ })
).toBeVisible(); // BUG add proper testId for dRep registration card
});
});

0 comments on commit 68b8374

Please sign in to comment.