diff --git a/src/features/helm-charts/installing-chart/installing-helm-chart-from-new-tab.test.ts b/src/features/helm-charts/installing-chart/installing-helm-chart-from-new-tab.test.ts index 4e2542b7cb..6a28ea7284 100644 --- a/src/features/helm-charts/installing-chart/installing-helm-chart-from-new-tab.test.ts +++ b/src/features/helm-charts/installing-chart/installing-helm-chart-from-new-tab.test.ts @@ -180,7 +180,7 @@ describe("installing helm chart from new tab", () => { await requestHelmChartReadmeMock.resolve({ callWasSuccessful: true, - response: "some-readme" + response: "some-readme", }); }); @@ -477,7 +477,7 @@ describe("installing helm chart from new tab", () => { await requestHelmChartReadmeMock.resolve({ callWasSuccessful: true, - response: "some-readme" + response: "some-readme", }); }); diff --git a/src/features/helm-charts/installing-chart/opening-dock-tab-for-installing-helm-chart.test.ts b/src/features/helm-charts/installing-chart/opening-dock-tab-for-installing-helm-chart.test.ts index a92a9cdefa..3fd6a7deb7 100644 --- a/src/features/helm-charts/installing-chart/opening-dock-tab-for-installing-helm-chart.test.ts +++ b/src/features/helm-charts/installing-chart/opening-dock-tab-for-installing-helm-chart.test.ts @@ -232,7 +232,7 @@ describe("opening dock tab for installing helm chart", () => { beforeEach(async () => { await requestHelmChartReadmeMock.resolve({ callWasSuccessful: true, - response: "some-readme" + response: "some-readme", }); }); @@ -281,7 +281,7 @@ describe("opening dock tab for installing helm chart", () => { beforeEach(async () => { await requestHelmChartReadmeMock.resolve({ callWasSuccessful: true, - response: "some-readme" + response: "some-readme", }); }); @@ -310,7 +310,7 @@ describe("opening dock tab for installing helm chart", () => { beforeEach(async () => { await requestHelmChartReadmeMock.resolve({ callWasSuccessful: false, - error: "some-error" + error: "some-error", }); });