diff options
author | dan <dan.abramov@gmail.com> | 2023-11-07 04:30:00 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-07 04:30:00 +0000 |
commit | fa821943da1789ae53d17ff1739a2073ca6c8abb (patch) | |
tree | b9596f348d669e47fae44341d742b735de22ffe3 /__mocks__ | |
parent | 7ffbee18b578cc7f6d5eff6b7b4740eeb278d387 (diff) | |
download | voidsky-fa821943da1789ae53d17ff1739a2073ca6c8abb.tar.zst |
Use Sentry only for errors (#1776)
* Use Sentry only for errors * Fix merge
Diffstat (limited to '__mocks__')
-rw-r--r-- | __mocks__/sentry-expo.js | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/__mocks__/sentry-expo.js b/__mocks__/sentry-expo.js index e735c48c5..5a0e644e8 100644 --- a/__mocks__/sentry-expo.js +++ b/__mocks__/sentry-expo.js @@ -1,10 +1,3 @@ jest.mock('sentry-expo', () => ({ init: () => jest.fn(), - Native: { - ReactNativeTracing: jest.fn().mockImplementation(() => ({ - start: jest.fn(), - stop: jest.fn(), - })), - ReactNavigationInstrumentation: jest.fn(), - }, })) |