Skip to content
This repository was archived by the owner on Feb 23, 2021. It is now read-only.

Commit 684f38d

Browse files
committed
Stub IpcAction on mobile during development
1 parent 9d450ff commit 684f38d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/action/index-mobile.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ store.init(); // initialize computed values
4242
export const db = sinon.createStubInstance(AppStorage); // STUB DURING DEVELOPMENT
4343
// export const grpc = new GrpcAction(store, NativeModules, NativeEventEmitter);
4444
export const grpc = sinon.createStubInstance(GrpcAction); // STUB DURING DEVELOPMENT
45-
export const ipc = new IpcAction(grpc);
45+
// export const ipc = new IpcAction(grpc);
46+
export const ipc = sinon.createStubInstance(IpcAction); // STUB DURING DEVELOPMENT
4647
export const log = new LogAction(store, ipc, false);
4748
export const nav = new NavAction(store, NavigationActions);
4849
export const notify = new NotificationAction(store, nav);

0 commit comments

Comments
 (0)