Skip to content

Commit

Permalink
chore: update wallet connect numbering
Browse files Browse the repository at this point in the history
  • Loading branch information
kneerose committed Nov 18, 2024
1 parent 62f3271 commit 7364b33
Showing 1 changed file with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,23 +1,24 @@
import { setAllureEpic } from '@helpers/allure';
import LoginPage from '@pages/loginPage';
import { test } from '@fixtures/walletExtension';
import { organizer1Wallet } from '@constants/staticWallets';
import { organizerWallets } from '@constants/staticWallets';
import { expect } from '@playwright/test';

test.beforeEach(async () => {
await setAllureEpic('5. Wallet connect');
await setAllureEpic('4. Wallet connect');
});
test.use({ wallet: organizer1Wallet });

test('5-1A. Should connect wallet if stake key is registered', async ({
test.use({ wallet: organizerWallets[0] });

test('4-1A. Should connect wallet if stake key is registered', async ({
page,
}) => {
const loginPage = new LoginPage(page);
await loginPage.login();
await loginPage.isLoggedIn();
});

test('5-1B. Should disconnect Wallet When connected', async ({ page }) => {
test('4-1B. Should disconnect Wallet When connected', async ({ page }) => {
const loginPage = new LoginPage(page);
await loginPage.login();

Expand Down

0 comments on commit 7364b33

Please sign in to comment.