From 9534383e2996d8c2a9ded62e7fe52fe99063e28b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pau=20Ferrer=20Oca=C3=B1a?= Date: Wed, 9 Jun 2021 09:10:51 +0200 Subject: [PATCH] MOBILE-3320 ts: Fix test files not used warning --- tsconfig.app.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.app.json b/tsconfig.app.json index 530f84a16..67b984831 100644 --- a/tsconfig.app.json +++ b/tsconfig.app.json @@ -35,6 +35,7 @@ ], "exclude": [ "src/**/*.test.ts", - "src/testing/**" + "src/testing/**", + "src/**/tests/**" ] }