We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2493c9c commit 1325945Copy full SHA for 1325945
tests/helpers.js
@@ -46,11 +46,10 @@ export const secureCredential = async ({
46
const body = {credential, options};
47
const {data, result, error} = await issuer.post({json: body});
48
if(!result || !result.ok) {
49
- // console.warn(
50
- // `initial vc creation failed for ${(result || error)?.requestUrl}`,
51
- // error,
52
- // JSON.stringify(data, null, 2)
53
- // );
+ console.warn(
+ `initial vc creation failed for ${(result || error)?.requestUrl}`,
+ error
+ );
54
return null;
55
}
56
return data;
0 commit comments