Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2026-01-02 15:59:59 +03:00
parent 5e5204d04b
commit 130e7c6c1a
2 changed files with 4 additions and 4 deletions

View File

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

View File

@ -508,7 +508,7 @@ function(spec, chain, mod_chain_length=1){
.filter(function(m){
return typeof(modifiers[m]) == 'function'
// skip methods starting with '_'...
&& t[0] != '_'
&& m[0] != '_'
&& (chain == '**'
|| chain.mod == '*'
|| chain.mod == m) })
@ -528,7 +528,7 @@ function(spec, chain, mod_chain_length=1){
.filter(function(s){
return typeof(setups[s]) == 'function'
// skip methods starting with '_'...
&& t[0] != '_'
&& s[0] != '_'
&& (chain == '**'
|| chain.setup == '*'
|| chain.setup == s) })
@ -556,7 +556,7 @@ function(spec, chain, mod_chain_length=1){
.filter(function(s){
return typeof(cases[s]) == 'function'
// skip methods starting with '_'...
&& t[0] != '_'
&& s[0] != '_'
&& (chain == '**'
|| chain.setup == '*'
|| chain.setup == s) })