From ee0d87690b812667a2c9370bf0a928c939e3d0c7 Mon Sep 17 00:00:00 2001 From: Thomas Avery <43214426+Thomas-Avery@users.noreply.github.com> Date: Thu, 4 Aug 2022 14:17:32 -0500 Subject: [PATCH] Fixing storybook to run with new tests (#3244) --- .storybook/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.storybook/tsconfig.json b/.storybook/tsconfig.json index 80262bdf27c..e411a7a39cd 100644 --- a/.storybook/tsconfig.json +++ b/.storybook/tsconfig.json @@ -1,7 +1,7 @@ { "extends": "../tsconfig", "compilerOptions": { - "types": ["node"], + "types": ["node", "jest"], "allowSyntheticDefaultImports": true }, "exclude": ["../src/test.setup.ts", "../apps/src/**/*.spec.ts", "../libs/**/*.spec.ts"],