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

Add global override for userStoreFileMigratiom

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2022-09-19 17:15:05 -04:00
parent 8a90c230be
commit 945a841bf6
2 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,9 @@
/**
* Copyright (c) OpenLens Authors. All rights reserved.
* Licensed under MIT License. See LICENSE in root directory for more information.
*/
import { getGlobalOverride } from "../test-utils/get-global-override";
import userStoreFileNameMigrationInjectable from "./file-name-migration.injectable";
export default getGlobalOverride(userStoreFileNameMigrationInjectable, () => async () => {});

View File

@ -34,6 +34,7 @@ const userStoreFileNameMigrationInjectable = getInjectable({
}
};
},
causesSideEffects: true,
});
export default userStoreFileNameMigrationInjectable;