about summary refs log tree commit diff
path: root/__mocks__/rn-fetch-blob.js
blob: dedfbdf896c4f39b853838c7d65d7914828f36d2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
jest.mock('rn-fetch-blob', () => {
  return {
    __esModule: true,
    default: {
      fs: {
        unlink: jest.fn(),
      },
    },
  }
})