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

Fix code style

Co-authored-by: Mikko Aspiala <mikko.aspiala@gmail.com>

Signed-off-by: Janne Savolainen <janne.savolainen@live.fi>
This commit is contained in:
Janne Savolainen 2022-05-18 09:27:43 +03:00
parent 2bec6efdca
commit 8cdb0e0bcb
No known key found for this signature in database
GPG Key ID: 8C6CFB2FFFE8F68A
2 changed files with 2 additions and 16 deletions

View File

@ -4,15 +4,7 @@
*/ */
import type { AsyncFnMock } from "@async-fn/jest"; import type { AsyncFnMock } from "@async-fn/jest";
import asyncFn from "@async-fn/jest"; import asyncFn from "@async-fn/jest";
import { createContainer, getInjectable, getInjectionToken } from "@ogre-tools/injectable";
import {
createContainer,
getInjectable,
getInjectionToken,
} from "@ogre-tools/injectable";
import type { Runnable } from "./run-many-for"; import type { Runnable } from "./run-many-for";
import { runManyFor } from "./run-many-for"; import { runManyFor } from "./run-many-for";
import { getPromiseStatus } from "../test-utils/get-promise-status"; import { getPromiseStatus } from "../test-utils/get-promise-status";

View File

@ -2,13 +2,7 @@
* Copyright (c) OpenLens Authors. All rights reserved. * Copyright (c) OpenLens Authors. All rights reserved.
* Licensed under MIT License. See LICENSE in root directory for more information. * Licensed under MIT License. See LICENSE in root directory for more information.
*/ */
import { createContainer, getInjectable, getInjectionToken } from "@ogre-tools/injectable";
import {
createContainer,
getInjectable,
getInjectionToken,
} from "@ogre-tools/injectable";
import type { RunnableSync } from "./run-many-sync-for"; import type { RunnableSync } from "./run-many-sync-for";
import { runManySyncFor } from "./run-many-sync-for"; import { runManySyncFor } from "./run-many-sync-for";