Skip to content

Commit 0b6e9d2

Browse files
committed
Exclude testing in older versions
these versions are too slow
1 parent 0b3dfcb commit 0b6e9d2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module.exports = function(config) {
2-
return !/^v4/.test(process.version);
2+
return !/^v(4|6)/.test(process.version);
33
};
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module.exports = function(config) {
2-
return !/^v4/.test(process.version);
2+
return !/^v(4|6)/.test(process.version);
33
};

0 commit comments

Comments
 (0)