fix: bug
This commit is contained in:
10
jest.store.setup.js
Normal file
10
jest.store.setup.js
Normal 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(),
|
||||
}
|
||||
Reference in New Issue
Block a user