From: Evan You Date: Thu, 8 Oct 2020 01:46:25 +0000 (-0400) Subject: chore: add missing feature flag to jest config X-Git-Tag: v3.0.1~40 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cbcec6e9785557d4f26a36eb350ba94e86de382e;p=thirdparty%2Fvuejs%2Fcore.git chore: add missing feature flag to jest config --- diff --git a/jest.config.js b/jest.config.js index 1b987827ca..8312acd55c 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'],