1
0
Fork 0
mirror of synced 2024-10-05 12:34:50 +13:00

Fix tests

This commit is contained in:
Adria Navarro 2024-01-29 15:43:35 +01:00
parent aca7b50dc5
commit f3f6e0c41b

View file

@ -695,7 +695,8 @@ class TestConfiguration {
}
async getRow(tableId: string, rowId: string): Promise<Row> {
return this.api.row.get(tableId, rowId)
const res = await this.api.row.get(tableId, rowId)
return res.body
}
async getRows(tableId: string) {