some tweaking...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2020-08-17 12:40:13 +03:00
parent 10f1923ebf
commit a10e8ae340
2 changed files with 5 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{
"name": "ig-test",
"version": "1.3.8",
"version": "1.3.9",
"description": "experimental test runner....",
"main": "test.js",
"bin": {

View File

@ -266,6 +266,9 @@ object.Constructor('Merged', {
// in JS...
get size(){
return this.keys().length },
get usize(){
var k = this.keys()
return k.length - (k.includes('-') ? 1 : 0) },
add: function(member){
this.members.push(member)
@ -572,7 +575,7 @@ argv.Parser({
${ keys(this.cases).join('\n\
') }
Total number of tests: ${ ((a * b * (c || 1)) + d) +'' }
Total number of test chains: ${ ((a * b * (c || 1)) + d) +'' }
`, this.scriptName)
process.exit() }},