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 c3ed2d3 commit e4ac083Copy full SHA for e4ac083
test/cases/parsing/optional-catch-binding/test.filter.js
@@ -1,5 +1,9 @@
1
const supportsOptionalCatchBinding = require("../../../helpers/supportsOptionalCatchBinding");
2
3
module.exports = function(config) {
4
+ // XXX: Disable this test if UglifyJS is used because it does not support ES 2019
5
+ if (config.mode === "production") {
6
+ return false;
7
+ }
8
return supportsOptionalCatchBinding();
9
};
0 commit comments