Files
appRobotControlScara/test/setup.js
2026-04-22 13:47:51 +02:00

14 lines
349 B
JavaScript

// Jest Setup für alle Tests
const originalConsoleLog = console.log;
// Mock console.log um Warnings nach Tests zu vermeiden
beforeAll(() => {
console.log = jest.fn();
});
afterAll(async () => {
console.log = originalConsoleLog;
// Warten bis alle async Operationen fertig sind
await new Promise(resolve => setTimeout(resolve, 200));
});