Remove unused method

This commit is contained in:
Pedro Silva 2022-12-19 13:53:52 +00:00
parent 8cc8db7842
commit 96882ef135
1 changed files with 0 additions and 8 deletions

View File

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