Revert "more tests..."

This reverts commit 43c59438ebac558044bc973630dd1865b08d5e2c.
This commit is contained in:
Alex A. Naanou 2020-05-30 00:24:03 +03:00
parent 43c59438eb
commit 084315f078

View File

@ -196,8 +196,8 @@ var tests = {
return instances(setup) return instances(setup)
.map(function([k, o]){ .map(function([k, o]){
// NOTE: not all callables are instances of Function... // NOTE: not all callables are instances of Function...
assert(typeof(o) == 'function' //assert(typeof(o) == 'function'
&& o instanceof Function, 'instanceof Function') // && o instanceof Function, 'instanceof Function')
return typeof(o) == 'function' return typeof(o) == 'function'
&& assert(o(), 'call', k) }) }, && assert(o(), 'call', k) }) },
} }