Skip to content

Commit 7344adb

Browse files
committed
feat: add budgetProposal03 and budgetProposal04 wallets with corresponding auth setup
1 parent dad65fa commit 7344adb

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

tests/govtool-frontend/playwright/lib/constants/staticWallets.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ export const proposal09Wallet: StaticWallet = staticWallets[19];
3030

3131
export const budgetProposal01Wallet: StaticWallet = staticWallets[20];
3232
export const budgetProposal02Wallet: StaticWallet = staticWallets[21];
33+
export const budgetProposal03Wallet: StaticWallet = staticWallets[22];
34+
export const budgetProposal04Wallet: StaticWallet = staticWallets[23];
3335

3436
export const adaHolderWallets = [
3537
adaHolder01Wallet,

tests/govtool-frontend/playwright/tests/auth.setup.ts

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ import {
99
adaHolder06Wallet,
1010
budgetProposal01Wallet,
1111
budgetProposal02Wallet,
12+
budgetProposal03Wallet,
13+
budgetProposal04Wallet,
1214
dRep01Wallet,
1315
dRep02Wallet,
1416
dRep03Wallet,
@@ -57,6 +59,8 @@ const proposal09AuthFile = ".auth/proposal09.json";
5759

5860
const budgetProposal01AuthFile = ".auth/budgetProposal01.json";
5961
const budgetProposal02AuthFile = ".auth/budgetProposal02.json";
62+
const budgetProposal03AuthFile = ".auth/budgetProposal03.json";
63+
const budgetProposal04AuthFile = ".auth/budgetProposal04.json";
6064

6165
setup.beforeEach(async () => {
6266
await setAllureEpic("Setup");
@@ -252,3 +256,21 @@ setup("Create Budget Proposal 02 auth", async ({ page, context }) => {
252256
auth: budgetProposal02AuthFile,
253257
});
254258
});
259+
260+
setup("Create Budget Proposal 03 auth", async ({ page, context }) => {
261+
await createAuthWithUserName({
262+
page,
263+
context,
264+
wallet: budgetProposal03Wallet,
265+
auth: budgetProposal03AuthFile,
266+
});
267+
});
268+
269+
setup("Create Budget Proposal 04 auth", async ({ page, context }) => {
270+
await createAuthWithUserName({
271+
page,
272+
context,
273+
wallet: budgetProposal04Wallet,
274+
auth: budgetProposal04AuthFile,
275+
});
276+
});

0 commit comments

Comments
 (0)