1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Replace override of catalogSyncToRenderer with a global override

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2022-11-08 13:42:34 -05:00
parent 6ce833c606
commit 0dabbb611e

View File

@ -0,0 +1,14 @@
/**
* Copyright (c) OpenLens Authors. All rights reserved.
* Licensed under MIT License. See LICENSE in root directory for more information.
*/
import { getGlobalOverride } from "../../common/test-utils/get-global-override";
import catalogSyncToRendererInjectable from "./catalog-sync-to-renderer.injectable";
// TODO: remove this so that we can actually behaviourally test this IPC
export default getGlobalOverride(catalogSyncToRendererInjectable, () => ({
start: () => {},
stop: () => {},
started: false,
}));