Files
2025-08-06 13:49:11 +08:00

8 lines
184 B
JavaScript

/* global jest: true */
jest.mock('@react-native-community/netinfo', () => ({
getConnectionInfo: () => Promise.resolve(),
addEventListener: jest.fn(),
isConnected: jest.fn(),
}));