From cbcec6e9785557d4f26a36eb350ba94e86de382e Mon Sep 17 00:00:00 2001 From: Evan You Date: Wed, 7 Oct 2020 21:46:25 -0400 Subject: [PATCH] chore: add missing feature flag to jest config --- jest.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jest.config.js b/jest.config.js index 1b987827..8312acd5 100644 --- a/jest.config.js +++ b/jest.config.js @@ -11,7 +11,8 @@ module.exports = { __ESM_BROWSER__: false, __NODE_JS__: true, __FEATURE_OPTIONS_API__: true, - __FEATURE_SUSPENSE__: true + __FEATURE_SUSPENSE__: true, + __FEATURE_PROD_DEVTOOLS__: false }, coverageDirectory: 'coverage', coverageReporters: ['html', 'lcov', 'text'],