From 96882ef135182f8a89e7b6f6cfd95c95db1ec65e Mon Sep 17 00:00:00 2001 From: Pedro Silva Date: Mon, 19 Dec 2022 13:53:52 +0000 Subject: [PATCH] Remove unused method --- .../config/internal-api/TestConfiguration/applications.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/qa-core/src/config/internal-api/TestConfiguration/applications.ts b/qa-core/src/config/internal-api/TestConfiguration/applications.ts index 53679e0bed..7314648648 100644 --- a/qa-core/src/config/internal-api/TestConfiguration/applications.ts +++ b/qa-core/src/config/internal-api/TestConfiguration/applications.ts @@ -40,14 +40,6 @@ export default class AppApi { return [response, publishedAppRenders] } - async failRender(): Promise<[Response, responseMessage]> { - const response = await this.api.get("/routing/client") - const json = await response.json() - expect(response).toHaveStatusCode(404) - return [response, json] - } - - async getAppPackage(appId: string): Promise<[Response, AppPackageResponse]> { const response = await this.api.get(`/applications/${appId}/appPackage`) const json = await response.json()