From f79586bd05bcc73391714e2a983b55866e9cc6cb Mon Sep 17 00:00:00 2001 From: YouKnowBlom <6439218+YouKnowBlom@users.noreply.github.com> Date: Sun, 4 Jul 2021 22:21:50 +0200 Subject: [PATCH] Add jest types to tsconfig --- src/__tests__/credentialManager.test.ts | 2 +- tsconfig.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/__tests__/credentialManager.test.ts b/src/__tests__/credentialManager.test.ts index 175d5d7b..959ebd28 100644 --- a/src/__tests__/credentialManager.test.ts +++ b/src/__tests__/credentialManager.test.ts @@ -1,6 +1,6 @@ import { Configuration } from '../api/generated/configuration'; -import { credentialManager, CredentialStore } from '../api/credentialManager'; +import { credentialManager } from '../api/credentialManager'; const serverId1 = 'f4486b851af24255b3305fe614b81f01'; const serverConfig1: Configuration = { diff --git a/tsconfig.json b/tsconfig.json index a8aa9c3c..145ce0a6 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -14,6 +14,6 @@ "paths": { "~/*": ["./*"] }, - "types": ["@types/node", "@types/chromecast-caf-receiver"] + "types": ["@types/node", "@types/chromecast-caf-receiver", "jest"] } }