Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2023-01-05 05:04:13 +03:00
parent c2e4b62ea6
commit eccde91a50
2 changed files with 2 additions and 2 deletions

View File

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

View File

@ -114,7 +114,7 @@ var arrayCmp = function(a, b){
// keep only non matching stuff...
.filter(function(k){
return a[k] !== b[k]
&& a[k] != a[k] })
&& a[k] != b[k] })
.length == 0) }