1
0
Fork 0
mirror of synced 2024-10-02 10:08:09 +13:00

Remove unused method

This commit is contained in:
Pedro Silva 2022-12-19 13:53:52 +00:00
parent 8cc8db7842
commit 96882ef135

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