about summary refs log tree commit diff
path: root/__mocks__/sentry-expo.js
blob: e735c48c5598347de65c254e63665bc1b45f01cc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
jest.mock('sentry-expo', () => ({
  init: () => jest.fn(),
  Native: {
    ReactNativeTracing: jest.fn().mockImplementation(() => ({
      start: jest.fn(),
      stop: jest.fn(),
    })),
    ReactNavigationInstrumentation: jest.fn(),
  },
}))