From 85ad87519837e4cb09e205ac7bb9f33d5b88d8b1 Mon Sep 17 00:00:00 2001 From: Marcin Gordel Date: Wed, 7 Feb 2024 18:04:32 +0100 Subject: [PATCH] fix: broken imports --- jest.config.json | 2 +- tests/mock/utils/logger.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/jest.config.json b/jest.config.json index c4a7400..0b7afad 100644 --- a/jest.config.json +++ b/jest.config.json @@ -19,4 +19,4 @@ ], "summary" ] -} \ No newline at end of file +} diff --git a/tests/mock/utils/logger.ts b/tests/mock/utils/logger.ts index 642b7ca..64eb48b 100644 --- a/tests/mock/utils/logger.ts +++ b/tests/mock/utils/logger.ts @@ -1,4 +1,4 @@ -import { Logger } from "../../../src"; +import { Logger } from "@golem-sdk/golem-js"; function ctxToString(ctx: Record | Error | undefined) { if (!ctx) return "[no context]";