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";