Fix table test.
This commit is contained in:
parent
678ce98830
commit
89a03af92a
|
@ -125,10 +125,13 @@ export class RowAPI extends TestAPI {
|
||||||
body: BulkImportRequest,
|
body: BulkImportRequest,
|
||||||
expectations?: Expectations
|
expectations?: Expectations
|
||||||
): Promise<BulkImportResponse> => {
|
): Promise<BulkImportResponse> => {
|
||||||
return await this._post<BulkImportResponse>(`/api/${tableId}/rows/import`, {
|
return await this._post<BulkImportResponse>(
|
||||||
body,
|
`/api/tables/${tableId}/import`,
|
||||||
expectations,
|
{
|
||||||
})
|
body,
|
||||||
|
expectations,
|
||||||
|
}
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
search = async (
|
search = async (
|
||||||
|
|
Loading…
Reference in New Issue