Skip to content

Commit

Permalink
Update eslint to fix an npm dependency conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
Avaq committed Nov 24, 2023
1 parent 47b62eb commit 6f5bd61
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
"chai": "^4.1.2",
"codecov": "^3.6.1",
"es-check": "^7.0.0",
"eslint": "^7.0.0",
"eslint": "^8.54.0",
"eslint-config-warp": "^4.0.0",
"fantasy-laws": "^1.0.1",
"jsverify": "^0.8.3",
Expand Down
4 changes: 2 additions & 2 deletions test/unit/0.predicates.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ test('isFunction', function (){
});

test('isUnsigned', function (){
var is = [1, 2, 99999999999999999999, Infinity];
var xs = [NaN, 0, -0, -1, -99999999999999999, -Infinity, '1', [], {}];
var is = [1, 2, 999999999999999, Infinity];
var xs = [NaN, 0, -0, -1, -999999999999999, -Infinity, '1', [], {}];
is.forEach(function (i){ return expect(util.isUnsigned(i)).to.equal(true) });
xs.forEach(function (x){ return expect(util.isUnsigned(x)).to.equal(false) });
});
Expand Down

0 comments on commit 6f5bd61

Please sign in to comment.