From 9581ca2e6abc71ac59c422c36ad5d33a8c0cef8e Mon Sep 17 00:00:00 2001 From: Abby Wheelis Date: Fri, 3 Nov 2023 11:44:02 -0600 Subject: [PATCH] remove unused mock code this is leftover code and I never used it in testing, removing --- www/__mocks__/pushNotificationMocks.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/www/__mocks__/pushNotificationMocks.ts b/www/__mocks__/pushNotificationMocks.ts index 0e98fa064..53a81e16c 100644 --- a/www/__mocks__/pushNotificationMocks.ts +++ b/www/__mocks__/pushNotificationMocks.ts @@ -31,8 +31,3 @@ export const getOnList = function () { export const getCalled = function () { return called; }; - -export const fakeEvent = function (eventName: string) { - //fake the event by executing whatever we have stored for it - onList[eventName](); -};