Skip to content

Commit

Permalink
Exclude testing in older versions
Browse files Browse the repository at this point in the history
these versions are too slow
  • Loading branch information
sokra committed Oct 13, 2017
1 parent 0b3dfcb commit 0b6e9d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module.exports = function(config) {
return !/^v4/.test(process.version);
return !/^v(4|6)/.test(process.version);
};
2 changes: 1 addition & 1 deletion test/configCases/performance/many-exports/test.filter.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module.exports = function(config) {
return !/^v4/.test(process.version);
return !/^v(4|6)/.test(process.version);
};

0 comments on commit 0b6e9d2

Please sign in to comment.