Remove fetchEnriched
This commit is contained in:
parent
8466f8883c
commit
9c9d2560b2
|
@ -958,7 +958,7 @@ describe("/rowsActions", () => {
|
|||
// document was not being cleaned up. This meant there existed code paths
|
||||
// that would find it and try to reference the tables within it, resulting
|
||||
// in errors.
|
||||
await config.api.automation.fetchEnriched({
|
||||
await config.api.automation.fetch({
|
||||
status: 200,
|
||||
})
|
||||
})
|
||||
|
|
|
@ -23,17 +23,6 @@ export class AutomationAPI extends TestAPI {
|
|||
})
|
||||
}
|
||||
|
||||
fetchEnriched = async (
|
||||
expectations?: Expectations
|
||||
): Promise<FetchAutomationResponse> => {
|
||||
return await this._get<FetchAutomationResponse>(
|
||||
`/api/automations?enrich=true`,
|
||||
{
|
||||
expectations,
|
||||
}
|
||||
)
|
||||
}
|
||||
|
||||
post = async (
|
||||
body: Automation,
|
||||
expectations?: Expectations
|
||||
|
|
Loading…
Reference in New Issue