From 82523161e81d2ee50b5822ad9cdfb4df176a5ca7 Mon Sep 17 00:00:00 2001 From: Im-Beast Date: Wed, 11 Dec 2024 08:57:57 +0100 Subject: tests: print why retrieving tags failed --- tests/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { ); 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 }[]; -- cgit v1.2.3