@logux/backend-test
Advanced tools
Comparing version 4.0.8 to 4.0.9
@@ -7,3 +7,2 @@ #!/usr/bin/env node | ||
let tests = require('./tests') | ||
let run = require('./run') | ||
@@ -31,10 +30,6 @@ | ||
if (arg === '--ignore') { | ||
ignore = process.argv[i + 1].split(',').map(parseInt) | ||
ignore = process.argv[i + 1].split(',').map(index => parseInt(index)) | ||
i += 1 | ||
} else if (/^\d+$/.test(arg)) { | ||
only = parseInt(arg) | ||
if (!tests[only]) { | ||
process.stderr.write(red('Unknown test ' + process.argv[3] + '\n')) | ||
process.exit(1) | ||
} | ||
} | ||
@@ -41,0 +36,0 @@ } |
@@ -6,2 +6,5 @@ # Change Log | ||
## 4.0.9 | ||
* Fixed multiple values in `--ignore` argument. | ||
## 4.0.8 | ||
@@ -8,0 +11,0 @@ * Added `--ignore` argument. |
{ | ||
"name": "@logux/backend-test", | ||
"version": "4.0.8", | ||
"version": "4.0.9", | ||
"description": "Test Logux Back-end Protocol implementation", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
18821
563