Skip to content

Commit 0958935

Browse files
committed
chore: decouple dRep auth setup from dRep setup dependency
1 parent c61c1a7 commit 0958935

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

tests/govtool-frontend/playwright/playwright.config.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ export default defineConfig({
6161
{
6262
name: "dRep auth setup",
6363
testMatch: "**/dRep.auth.setup.ts",
64-
dependencies: environments.ci ? ["dRep setup"] : [],
6564
},
6665
{
6766
name: "proposal discussion auth setup",
@@ -143,7 +142,7 @@ export default defineConfig({
143142
use: { ...devices["Desktop Chrome"] },
144143
testMatch: "**/*.dRep.spec.ts",
145144
dependencies: environments.ci
146-
? ["dRep auth setup"]
145+
? ["dRep auth setup" , "dRep setup"]
147146
: [],
148147
teardown: environments.ci && "cleanup artifacts",
149148
},

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,10 @@ import { dRep01Wallet, dRep02Wallet } from "@constants/staticWallets";
33
import { test as setup } from "@fixtures/walletExtension";
44
import { setAllureEpic, setAllureStory } from "@helpers/allure";
55
import { createAuth } from "@helpers/auth";
6-
import { skipIfMainnet } from "@helpers/cardano";
76

87
setup.beforeEach(async () => {
98
await setAllureEpic("Setup");
109
await setAllureStory("Authentication");
11-
await skipIfMainnet();
1210
});
1311

1412
const drepAuthConfigs = [

0 commit comments

Comments
 (0)