Skip to content

Commit

Permalink
Merge pull request #2076 from IntersectMBO/bugfix/3A
Browse files Browse the repository at this point in the history
Fix test 3A
  • Loading branch information
kneerose committed Sep 24, 2024
2 parents f7fca31 + 841dacd commit ef78262
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ test.beforeEach(async () => {
test.describe("Logged in DReps", () => {
test.use({ storageState: ".auth/dRep01.json", wallet: dRep01Wallet });

test("3A. Should show dRepId on dashboard after connecting registered dRep Wallet", async ({
test("3A. Should show dRepId on dashboard and enable voting on governance actions after connecting registered dRep Wallet", async ({
page,
}) => {
await page.goto("/");
Expand All @@ -37,6 +37,9 @@ test.describe("Logged in DReps", () => {
const governanceActionsPage = new GovernanceActionsPage(page);

await governanceActionsPage.goto();

await expect(page.getByText(/info action/i).first()).toBeVisible();

const governanceActionDetailsPage =
await governanceActionsPage.viewFirstProposalByGovernanceAction(
GrovernanceActionType.InfoAction
Expand Down

0 comments on commit ef78262

Please sign in to comment.