Skip to content

Commit

Permalink
Update jsdom to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
willeastcott committed Aug 6, 2023
1 parent cc558bc commit 899fa30
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 134 deletions.
155 changes: 24 additions & 131 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,8 @@
"cross-env": "^7.0.3",
"eslint": "^8.43.0",
"eslint-import-resolver-typescript": "^3.5.5",
"global-jsdom": "^8.7.0",
"jsdom": "^21.0.0",
"global-jsdom": "^9.0.1",
"jsdom": "^22.1.0",
"playcanvas": "^1.63.1",
"postcss": "^8.4.21",
"prop-types": "^15.8.1",
Expand Down
2 changes: 1 addition & 1 deletion test/components/numericinput.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ test('NumericInput: constructor: no args', () => {
strictEqual(numericInput.class.length, 4);
strictEqual(numericInput.class.contains('font-regular'), true);
strictEqual(numericInput.class.contains('pcui-element'), true);
strictEqual(numericInput.class.contains('pcui-input-element'), true);
strictEqual(numericInput.class.contains('pcui-numeric-input'), true);
strictEqual(numericInput.class.contains('pcui-text-input'), true);
});

test('NumericInput: up/down arrow keys step value', () => {
Expand Down

0 comments on commit 899fa30

Please sign in to comment.