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

Fix integration tests

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2023-03-09 15:57:10 -05:00 committed by Janne Savolainen
parent ffcaf0c54c
commit 32cd7e7b06
No known key found for this signature in database
GPG Key ID: 8C6CFB2FFFE8F68A
3 changed files with 3 additions and 3 deletions

View File

@ -10,7 +10,7 @@
cluster and vice versa. cluster and vice versa.
*/ */
import type { ElectronApplication, Page } from "playwright"; import type { ElectronApplication, Page } from "playwright";
import * as utils from "@k8slens/utilities"; import * as utils from "../helpers/utils";
describe("preferences page tests", () => { describe("preferences page tests", () => {
let window: Page; let window: Page;

View File

@ -9,7 +9,7 @@
TEST_NAMESPACE namespace. This is done to minimize destructive impact of the cluster tests on an existing minikube TEST_NAMESPACE namespace. This is done to minimize destructive impact of the cluster tests on an existing minikube
cluster and vice versa. cluster and vice versa.
*/ */
import * as utils from "@k8slens/utilities"; import * as utils from "../helpers/utils";
import { minikubeReady } from "../helpers/minikube"; import { minikubeReady } from "../helpers/minikube";
import type { Frame, Page } from "playwright"; import type { Frame, Page } from "playwright";
import { groupBy, toPairs } from "lodash/fp"; import { groupBy, toPairs } from "lodash/fp";

View File

@ -4,7 +4,7 @@
*/ */
import type { ElectronApplication, Page } from "playwright"; import type { ElectronApplication, Page } from "playwright";
import * as utils from "@k8slens/utilities"; import * as utils from "../helpers/utils";
describe("Lens command palette", () => { describe("Lens command palette", () => {
let window: Page; let window: Page;