Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 41 additions & 24 deletions dashboard/package-lock.json

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

3 changes: 2 additions & 1 deletion dashboard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@
"react-querybuilder": "8.0.0",
"react-quill-new": "3.4.1",
"react-redux": "9.1.0",
"react-router-dom": "6.30.4",
"react-router": "7.18.2",
"react-router-dom": "7.18.2",
"react-toastify": "10.0.5",
"recharts": "2.15.1",
"sanitize-html": "2.17.4"
Expand Down
5 changes: 5 additions & 0 deletions dashboard/src/setupTests.simple.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@

import '@testing-library/jest-dom';

// Polyfills for Node 12 / Jest jsdom compatibility
Comment thread
Brijesh619 marked this conversation as resolved.
Outdated
import { TextEncoder, TextDecoder } from 'util';
Comment thread
Brijesh619 marked this conversation as resolved.
Outdated
(global as any).TextEncoder = TextEncoder;
(global as any).TextDecoder = TextDecoder;

export {};


Expand Down
Loading