This commit is contained in:
imeepos
2026-01-28 18:46:44 +08:00
parent e478b126cd
commit 7c50d396e9
40 changed files with 6567 additions and 39 deletions

10
jest.store.setup.js Normal file
View File

@@ -0,0 +1,10 @@
// Minimal setup for store testing
require('@testing-library/jest-native/extend-expect')
// Global mock for console methods to reduce noise in tests
global.console = {
...console,
error: jest.fn(),
warn: jest.fn(),
log: jest.fn(),
}