11 lines
242 B
JavaScript
11 lines
242 B
JavaScript
// 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(),
|
|
}
|