From 74fc8b42adc08608461b67a5c001ddb489f477ea Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Tue, 9 Feb 2021 14:04:53 -0500 Subject: [PATCH] fix lint Signed-off-by: Sebastian Malton --- integration/__tests__/cluster-pages.tests.ts | 2 +- integration/helpers/utils.ts | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/integration/__tests__/cluster-pages.tests.ts b/integration/__tests__/cluster-pages.tests.ts index 59504762af..93836eba26 100644 --- a/integration/__tests__/cluster-pages.tests.ts +++ b/integration/__tests__/cluster-pages.tests.ts @@ -444,7 +444,7 @@ describe("Lens cluster pages", () => { afterEach(async () => { abortContoller.abort(); - if (app?.isRunning()) { + if (app?.isRunning()) { await utils.tearDown(app); } }); diff --git a/integration/helpers/utils.ts b/integration/helpers/utils.ts index 3700cbde31..421097d736 100644 --- a/integration/helpers/utils.ts +++ b/integration/helpers/utils.ts @@ -1,8 +1,6 @@ import { AppConstructorOptions, Application } from "spectron"; import * as util from "util"; import { exec } from "child_process"; -import fse from "fs-extra"; -import path from "path"; import { delay } from "../../src/common/utils"; import { AbortController } from "abort-controller";