mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 08:50:15 +01:00
8 lines
201 B
Text
8 lines
201 B
Text
|
|
Object.defineProperty(window, 'ResizeObserver', {
|
||
|
|
writable: true,
|
||
|
|
value: jest.fn().mockImplementation(() => ({
|
||
|
|
disconnect: jest.fn(),
|
||
|
|
observe: jest.fn(),
|
||
|
|
unobserve: jest.fn(),
|
||
|
|
}))
|
||
|
|
});
|