Skip to content

Commit 6a7605d

Browse files
- Fixed build
1 parent 6e7a870 commit 6a7605d

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

package-lock.json

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/core/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@
8282
"@testing-library/jest-dom": "^6.9.1",
8383
"@testing-library/react": "^16.3.0",
8484
"@testing-library/user-event": "^14.6.1",
85+
"@types/html": "^1.0.4",
8586
"ajv": "^8.17.1",
8687
"atob": "^2.1.2",
8788
"chai": "^3.5.0",

packages/core/test/setup-jest-env.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ import { setImmediate } from 'timers';
55
global.atob = require('atob');
66

77
// HTML debugging helper
8-
global.d = function d(node) {
8+
// @ts-expect-error TS7017 because we are avoiding an implicit any
9+
global.d = function d(node: any) {
910
console.log(html.prettyPrint(node.outerHTML, { indent_size: 2 }));
1011
};
1112

0 commit comments

Comments
 (0)