Ver código fonte

chore: add missing feature flag to jest config

Evan You 5 anos atrás
pai
commit
cbcec6e978
1 arquivos alterados com 2 adições e 1 exclusões
  1. 2 1
      jest.config.js

+ 2 - 1
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'],