We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa7a97f commit 575982bCopy full SHA for 575982b
scripts/jest/config.source.js
@@ -1,6 +1,9 @@
1
'use strict';
2
3
module.exports = {
4
+ haste: {
5
+ hasteImplModulePath: require.resolve('./noHaste.js'),
6
+ },
7
modulePathIgnorePatterns: [
8
'<rootDir>/scripts/rollup/shims/',
9
'<rootDir>/scripts/bench/',
scripts/jest/noHaste.js
@@ -0,0 +1,8 @@
+'use strict';
+
+module.exports = {
+ getHasteName() {
+ // We never want Haste.
+ return null;
+};
0 commit comments