From 2064af92fc2db899468268fa0da15d7bddc1b0d5 Mon Sep 17 00:00:00 2001 From: Balu Babu Date: Mon, 6 Nov 2023 13:11:03 +0530 Subject: [PATCH] chore: added missing import in shortcode tests --- .../hoppscotch-backend/src/shortcode/shortcode.service.spec.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/hoppscotch-backend/src/shortcode/shortcode.service.spec.ts b/packages/hoppscotch-backend/src/shortcode/shortcode.service.spec.ts index 43a097a8e..5e7c9fff6 100644 --- a/packages/hoppscotch-backend/src/shortcode/shortcode.service.spec.ts +++ b/packages/hoppscotch-backend/src/shortcode/shortcode.service.spec.ts @@ -11,6 +11,7 @@ import { import { Shortcode } from './shortcode.model'; import { ShortcodeService } from './shortcode.service'; import { UserService } from 'src/user/user.service'; +import { AuthUser } from 'src/types/AuthUser'; const mockPrisma = mockDeep();