Exclude testing in older versions

these versions are too slow
This commit is contained in:
Tobias Koppers 2017-10-13 11:04:39 +02:00
parent 0b3dfcbe42
commit 0b6e9d284c
2 changed files with 2 additions and 2 deletions

View File

@ -1,3 +1,3 @@
module.exports = function(config) {
return !/^v4/.test(process.version);
return !/^v(4|6)/.test(process.version);
};

View File

@ -1,3 +1,3 @@
module.exports = function(config) {
return !/^v4/.test(process.version);
return !/^v(4|6)/.test(process.version);
};