Skip to content

Commit ee09002

Browse files
committed
feat: add new proposal 8 wallet
1 parent 1e039f2 commit ee09002

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ export const proposal04Wallet: StaticWallet = staticWallets[13];
2424
export const proposal05Wallet: StaticWallet = staticWallets[14];
2525
export const proposal06Wallet: StaticWallet = staticWallets[15];
2626
export const proposal07Wallet: StaticWallet = staticWallets[16];
27+
export const proposal08Wallet: StaticWallet = staticWallets[17];
2728

2829
export const adaHolderWallets = [
2930
adaHolder01Wallet,
@@ -46,6 +47,7 @@ export const proposalWallets = [
4647
proposal05Wallet,
4748
proposal06Wallet,
4849
proposal07Wallet,
50+
proposal08Wallet,
4951
];
5052

5153
export const allStaticWallets = [

tests/govtool-frontend/playwright/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"allure:serve": "npx allure serve",
2626
"test": "npx playwright test",
2727
"format": "prettier . --write",
28-
"generate-wallets": "ts-node ./generate_wallets.ts 17"
28+
"generate-wallets": "ts-node ./generate_wallets.ts 18"
2929
},
3030
"dependencies": {
3131
"@cardanoapi/cardano-test-wallet": "^3.0.0",

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

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ import {
1616
proposal05Wallet,
1717
proposal06Wallet,
1818
proposal07Wallet,
19+
proposal08Wallet,
1920
user01Wallet,
2021
} from "@constants/staticWallets";
2122
import { test as setup } from "@fixtures/walletExtension";
@@ -46,6 +47,7 @@ const proposal04AuthFile = ".auth/proposal04.json";
4647
const proposal05AuthFile = ".auth/proposal05.json";
4748
const proposal06AuthFile = ".auth/proposal06.json";
4849
const proposal07AuthFile = ".auth/proposal07.json";
50+
const proposal08AuthFile = ".auth/proposal08.json";
4951

5052
setup.beforeEach(async () => {
5153
await setAllureEpic("Setup");
@@ -196,3 +198,12 @@ setup("Create Proposal 07 auth", async ({ page, context }) => {
196198
auth: proposal07AuthFile,
197199
});
198200
});
201+
202+
setup("Create Proposal 08 auth", async ({ page, context }) => {
203+
await createAuthWithUserName({
204+
page,
205+
context,
206+
wallet: proposal08Wallet,
207+
auth: proposal08AuthFile,
208+
});
209+
});

0 commit comments

Comments
 (0)