diff --git a/test/configCases/performance/many-async-imports/test.filter.js b/test/configCases/performance/many-async-imports/test.filter.js index 6a8d56378..8b7e505b1 100644 --- a/test/configCases/performance/many-async-imports/test.filter.js +++ b/test/configCases/performance/many-async-imports/test.filter.js @@ -1,3 +1,3 @@ module.exports = function(config) { - return !/^v4/.test(process.version); + return !/^v(4|6)/.test(process.version); }; diff --git a/test/configCases/performance/many-exports/test.filter.js b/test/configCases/performance/many-exports/test.filter.js index 6a8d56378..8b7e505b1 100644 --- a/test/configCases/performance/many-exports/test.filter.js +++ b/test/configCases/performance/many-exports/test.filter.js @@ -1,3 +1,3 @@ module.exports = function(config) { - return !/^v4/.test(process.version); + return !/^v(4|6)/.test(process.version); };