Fix tests
This commit is contained in:
parent
aca7b50dc5
commit
f3f6e0c41b
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue