From b170a6c058e629ecbd36411f80d564c7b02344ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Mierzwa?= Date: Mon, 14 Nov 2022 16:09:03 +0000 Subject: [PATCH] fix(ui): fix builds --- ui/src/App.test.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/src/App.test.tsx b/ui/src/App.test.tsx index 091d1f9bb..f3e34bd0f 100644 --- a/ui/src/App.test.tsx +++ b/ui/src/App.test.tsx @@ -64,7 +64,7 @@ describe("", () => { ); // https://github.com/facebook/jest/issues/6798#issuecomment-412871616 - const getItemSpy = jest.spyOn(Storage.prototype, "getItem"); + const getItemSpy: any = jest.spyOn(Storage.prototype, "getItem"); mount(); @@ -85,7 +85,7 @@ describe("", () => { ); // https://github.com/facebook/jest/issues/6798#issuecomment-412871616 - const getItemSpy = jest.spyOn(Storage.prototype, "getItem"); + const getItemSpy: any = jest.spyOn(Storage.prototype, "getItem"); mount();