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()