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

Fix type errors

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2023-03-29 13:25:53 -04:00
parent cd5ddd93c3
commit 6dd41c13ba
2 changed files with 3 additions and 4 deletions

View File

@ -83,7 +83,6 @@ describe("kube auth proxy tests", () => {
di.override(kubectlDownloadingNormalizedArchInjectable, () => "amd64"); di.override(kubectlDownloadingNormalizedArchInjectable, () => "amd64");
di.override(normalizedPlatformInjectable, () => "darwin"); di.override(normalizedPlatformInjectable, () => "darwin");
const createKubeAuthProxy = di.inject(createKubeAuthProxyInjectable);
const addCluster = di.inject(addClusterInjectable); const addCluster = di.inject(addClusterInjectable);
cluster = addCluster({ cluster = addCluster({
@ -91,7 +90,7 @@ describe("kube auth proxy tests", () => {
kubeConfigPath: "/minikube-config.yml", kubeConfigPath: "/minikube-config.yml",
contextName: "minikube", contextName: "minikube",
}); });
kubeAuthProxy = createKubeAuthProxy(cluster, {}); kubeAuthProxy = di.inject(createKubeAuthProxyInjectable, cluster)({});
}); });
it("calling exit multiple times shouldn't throw", async () => { it("calling exit multiple times shouldn't throw", async () => {

View File

@ -97,8 +97,8 @@ describe("kubeconfig-sync.source tests", () => {
const models = configToModels(config, "/bar"); const models = configToModels(config, "/bar");
expect(models.length).toBe(1); expect(models.length).toBe(1);
expect(models[0][0].contextName).toBe("context-name"); expect(models[0].contextName).toBe("context-name");
expect(models[0][0].kubeConfigPath).toBe("/bar"); expect(models[0].kubeConfigPath).toBe("/bar");
}); });
}); });