1
0
mirror of https://github.com/lensapp/lens.git synced 2024-08-16 04:40:24 +03:00

chore: Fix integration tests failing due to helm testid's changing

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2023-05-15 11:43:36 -04:00
parent eb78edb226
commit 54b6375a7e
4 changed files with 4 additions and 4 deletions

View File

@ -322,13 +322,13 @@ const scenarios = [
{
expectedSelector: "div.HelmCharts input",
parentSidebarItemTestId: "link-for-sidebar-item-helm",
sidebarItemTestId: "link-for-sidebar-item-charts",
sidebarItemTestId: "link-for-sidebar-item-helm-charts",
},
{
expectedSelector: "h5.title",
parentSidebarItemTestId: "link-for-sidebar-item-helm",
sidebarItemTestId: "link-for-sidebar-item-releases",
sidebarItemTestId: "link-for-sidebar-item-helm-releases",
},
{

View File

@ -4,7 +4,7 @@
*/
import { getInjectable } from "@ogre-tools/injectable";
import helmChartsRouteInjectable from "../../../common/front-end-routing/routes/cluster/helm/charts/helm-charts-route.injectable";
import helmSidebarItemInjectable from "../helm/helm-sidebar-item.injectable";
import helmSidebarItemInjectable from "../helm/sidebar-item.injectable";
import { sidebarItemInjectionToken } from "@k8slens/cluster-sidebar";
import routeIsActiveInjectable from "../../routes/route-is-active.injectable";
import navigateToHelmChartsInjectable from "../../../common/front-end-routing/routes/cluster/helm/charts/navigate-to-helm-charts.injectable";

View File

@ -5,7 +5,7 @@
import { getInjectable } from "@ogre-tools/injectable";
import helmReleasesRouteInjectable from "../../../common/front-end-routing/routes/cluster/helm/releases/helm-releases-route.injectable";
import helmSidebarItemInjectable from "../helm/helm-sidebar-item.injectable";
import helmSidebarItemInjectable from "../helm/sidebar-item.injectable";
import { sidebarItemInjectionToken } from "@k8slens/cluster-sidebar";
import routeIsActiveInjectable from "../../routes/route-is-active.injectable";
import navigateToHelmReleasesInjectable from "../../../common/front-end-routing/routes/cluster/helm/releases/navigate-to-helm-releases.injectable";