We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a08c81 commit bdbaad4Copy full SHA for bdbaad4
test/test-cli.js
@@ -1,5 +1,11 @@
1
'use strict';
2
3
+const invalidNodeVersions = /0.(10|12).(\d+)/;
4
+if (process.versions.node.match(invalidNodeVersions)) {
5
+ console.log('Skipping CLI tests as they can\'t run on node: ' + process.versions.node);
6
+ return;
7
+}
8
+
9
const assert = require('assert');
10
const urlBase64 = require('urlsafe-base64');
11
const spawn = require('child_process').spawn;
0 commit comments