summaryrefslogtreecommitdiff
path: root/tests/utils.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tests/utils.ts')
-rwxr-xr-xtests/utils.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/utils.ts b/tests/utils.ts
index 0326d11..ebf4e8b 100755
--- a/tests/utils.ts
+++ b/tests/utils.ts
@@ -151,7 +151,7 @@ export async function getMoneroCTags(): Promise<string[]> {
);
if (!response.ok) {
- throw new Error("Could not receive monero_c release tags");
+ throw new Error(`Could not receive monero_c release tags: ${await response.text()}`);
}
const json = await response.json() as { tag_name: string }[];