Fix tests

This commit is contained in:
Adria Navarro 2024-01-29 15:43:35 +01:00
parent aca7b50dc5
commit f3f6e0c41b
1 changed files with 2 additions and 1 deletions

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