ueberpruefen

This commit is contained in:
2025-10-28 23:38:37 +01:00
parent c2c5dd1041
commit 8dab9bfd25
56 changed files with 13640 additions and 2002 deletions

13
jest.setup.js Normal file
View File

@@ -0,0 +1,13 @@
// Mock expo-sqlite
jest.mock('expo-sqlite', () => ({
openDatabaseAsync: jest.fn(),
}));
// Mock expo modules
jest.mock('expo-file-system', () => ({}));
jest.mock('expo-camera', () => ({}));
jest.mock('expo-image-picker', () => ({}));
jest.mock('expo-image-manipulator', () => ({}));
jest.mock('expo-localization', () => ({
locale: 'en-US',
}));