From 60c2964acd748fd99668c6e3503364938cdb8a55 Mon Sep 17 00:00:00 2001
From: Henry Heino <46334387+personalizedrefrigerator@users.noreply.github.com>
Date: Fri, 17 Nov 2023 08:04:36 -0800
Subject: [PATCH] Chore: Tests: Fix vscode doesn't recognize Jest types in some
 test files (#9337)

---
 packages/app-mobile/tsconfig.json | 2 --
 packages/renderer/tsconfig.json   | 3 +--
 2 files changed, 1 insertion(+), 4 deletions(-)

diff --git a/packages/app-mobile/tsconfig.json b/packages/app-mobile/tsconfig.json
index c9bbcbd91..306938e4f 100644
--- a/packages/app-mobile/tsconfig.json
+++ b/packages/app-mobile/tsconfig.json
@@ -7,8 +7,6 @@
 	"exclude": [
 		//Files that don't need transpilation
 		"**/node_modules",
-		"**/*.test.ts",
-		"**/*.test.tsx",
 		"gulpfile.ts",
 		"tools/*.ts",
 	],
diff --git a/packages/renderer/tsconfig.json b/packages/renderer/tsconfig.json
index ffe03e95e..bf8fde0f3 100644
--- a/packages/renderer/tsconfig.json
+++ b/packages/renderer/tsconfig.json
@@ -5,7 +5,6 @@
         "**/*.tsx",
 	],
 	"exclude": [
-		"**/node_modules",
-		"**/*.test.ts",
+		"**/node_modules"
 	],
 }
\ No newline at end of file