Skip to content

Commit

Permalink
[test] Do not test uws on Node.js > 10
Browse files Browse the repository at this point in the history
  • Loading branch information
lpinca committed Nov 8, 2018
1 parent e3a4094 commit ca29c8f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/transformer.base.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ module.exports = function base(transformer, transformer_name) {
};

(
transformer === 'uws' && process.versions.modules < 57
transformer === 'uws' &&
(process.versions.modules < 57 || process.versions.modules > 64)
? describe.skip
: describe
)('Transformer: '+ (transformer_name || transformer), function () {
Expand Down

0 comments on commit ca29c8f

Please sign in to comment.