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

Fix code style

Signed-off-by: Janne Savolainen <janne.savolainen@live.fi>
This commit is contained in:
Janne Savolainen 2023-03-07 16:53:11 +02:00 committed by Sebastian Malton
parent 4fd01ef8f4
commit 3f4c000d3a
2 changed files with 5 additions and 1 deletions

View File

@ -23,7 +23,7 @@ describe("check-for-platform-updates", () => {
beforeEach(() => {
const di = getDiForUnitTesting();
di.unoverride(checkForPlatformUpdatesInjectable)
di.unoverride(checkForPlatformUpdatesInjectable);
checkForUpdatesMock = asyncFn();

View File

@ -1,3 +1,7 @@
/**
* Copyright (c) OpenLens Authors. All rights reserved.
* Licensed under MIT License. See LICENSE in root directory for more information.
*/
import { identity } from "lodash/fp";
import { getGlobalOverride } from "../../../common/test-utils/get-global-override";
import telemetryDecoratorInjectable from "./telemetry-decorator.injectable";