We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d519c20 commit 96fcaf8Copy full SHA for 96fcaf8
tests/govtool-frontend/playwright/lib/pages/proposalSubmissionPage.ts
@@ -427,7 +427,9 @@ export default class ProposalSubmissionPage {
427
428
async createProposal(
429
wallet: StaticWallet,
430
- proposalType: ProposalType = ProposalType.treasury
+ proposalType: ProposalType = Object.values(ProposalType)[
431
+ Math.floor(Math.random() * Object.values(ProposalType).length)
432
+ ]
433
): Promise<number> {
434
await this.addLinkBtn.click();
435
const receivingAddr = ShelleyWallet.fromJson(wallet).rewardAddressBech32(
0 commit comments