about summary refs log tree commit diff
path: root/__mocks__/rn-fetch-blob.js
diff options
context:
space:
mode:
Diffstat (limited to '__mocks__/rn-fetch-blob.js')
-rw-r--r--__mocks__/rn-fetch-blob.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/__mocks__/rn-fetch-blob.js b/__mocks__/rn-fetch-blob.js
new file mode 100644
index 000000000..dedfbdf89
--- /dev/null
+++ b/__mocks__/rn-fetch-blob.js
@@ -0,0 +1,10 @@
+jest.mock('rn-fetch-blob', () => {
+  return {
+    __esModule: true,
+    default: {
+      fs: {
+        unlink: jest.fn(),
+      },
+    },
+  }
+})