Skip to content

Commit 6828985

Browse files
committed
fix: ensure proposal cards are visible in governance actions test
1 parent e988d13 commit 6828985

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tests/govtool-frontend/playwright/tests/4-proposal-visibility/proposalVisibility.spec.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,7 @@ test("4H. Should verify none of the displayed governance actions have expired",
203203
async () => {
204204
const proposalCards = await govActionsPage.getAllProposals();
205205
for (const proposalCard of proposalCards) {
206+
await expect(proposalCard).toBeVisible();
206207
const expiryDateEl = proposalCard.getByTestId("expiry-date");
207208
const expiryDateTxt = await expiryDateEl.innerText();
208209
const expiryDate = extractExpiryDateFromText(expiryDateTxt);

0 commit comments

Comments
 (0)