Skip to content

Commit 571e269

Browse files
authored
Merge pull request #2200 from IntersectMBO/bugfix/logger-import
fix: use logger import from helper instead of cypress logger
2 parents 91c2214 + 19dc4b4 commit 571e269

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/govtool-frontend/playwright/lib/helpers/transaction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ import environments from "@constants/environments";
22
import { Page, expect } from "@playwright/test";
33
import kuberService from "@services/kuberService";
44
import { LockInterceptor, LockInterceptorInfo } from "lib/lockInterceptor";
5-
import { Logger } from "../../../cypress/lib/logger/logger";
65
import convertBufferToHex from "./convertBufferToHex";
76
import { ShelleyWallet } from "./crypto";
87
import { uploadMetadataAndGetJsonHash } from "./metadata";
98
import { WalletAndAnchorType } from "@types";
9+
import { Logger } from "@helpers/logger";
1010

1111
/**
1212
* Polls the transaction status until it's resolved or times out.

tests/govtool-frontend/playwright/lib/services/kuberService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import environments from "lib/constants/environments";
1010
import { LockInterceptor, LockInterceptorInfo } from "lib/lockInterceptor";
1111
import fetch, { BodyInit, RequestInit } from "node-fetch";
1212
import { cborxDecoder, cborxEncoder } from "../helpers/cborEncodeDecode";
13-
import { Logger } from "./../../../cypress/lib/logger/logger";
13+
import { Logger } from "@helpers/logger";
1414

1515
type CertificateType = "registerstake" | "registerdrep" | "deregisterdrep";
1616

0 commit comments

Comments
 (0)