🧠 feat: Enforce Token Limit for Memory Usage (#8401)

This commit is contained in:
Samuel Path 2025-07-11 20:46:19 +02:00 committed by GitHub
parent 2e1874e596
commit 8e869f2274
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 765 additions and 31 deletions

View file

@ -17,6 +17,9 @@ import '@testing-library/jest-dom/extend-expect';
// 'react-lottie' uses canvas
import 'jest-canvas-mock';
// Mock ResizeObserver
import './resizeObserver.mock';
beforeEach(() => {
jest.clearAllMocks();
});
@ -40,4 +43,4 @@ jest.mock('react-i18next', () => {
init: jest.fn(),
},
};
});
});