1
0
Fork 0
mirror of synced 2024-09-30 00:57:16 +13:00

Merge pull request #3348 from Budibase/fix/auto-error

Handling complex errors in automation test error handler
This commit is contained in:
Michael Drury 2021-11-12 13:07:21 +00:00 committed by GitHub
commit 71ec5a0e44

View file

@ -64,5 +64,14 @@ exports.cleanUpRow = async (appId, tableId, row) => {
}
exports.getError = err => {
if (err == null) {
return "No error provided."
}
if (
typeof err === "object" &&
(err.toString == null || err.toString() === "[object Object]")
) {
return JSON.stringify(err)
}
return typeof err !== "string" ? err.toString() : err
}