expo-popcore-app/jest.store.setup.js

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(),
}