better logging
This commit is contained in:
parent
b2edad2dac
commit
15cecf126a
@ -1189,7 +1189,7 @@ export interface MerchantServiceInterface {
|
|||||||
export class MerchantApiClient {
|
export class MerchantApiClient {
|
||||||
constructor(
|
constructor(
|
||||||
private baseUrl: string,
|
private baseUrl: string,
|
||||||
private auth: MerchantAuthConfiguration,
|
public readonly auth: MerchantAuthConfiguration,
|
||||||
) {}
|
) {}
|
||||||
|
|
||||||
async changeAuth(auth: MerchantAuthConfiguration): Promise<void> {
|
async changeAuth(auth: MerchantAuthConfiguration): Promise<void> {
|
||||||
|
@ -122,7 +122,9 @@ export async function runMerchantInstancesTest(t: GlobalTestState) {
|
|||||||
|
|
||||||
// Now this should fail, as we didn't change the auth of the client yet.
|
// Now this should fail, as we didn't change the auth of the client yet.
|
||||||
const exc = await t.assertThrowsAsync(async () => {
|
const exc = await t.assertThrowsAsync(async () => {
|
||||||
await merchantClient.getInstances();
|
console.log("requesting instances with auth", merchantClient.auth);
|
||||||
|
const resp = await merchantClient.getInstances();
|
||||||
|
console.log("axios result:", resp);
|
||||||
});
|
});
|
||||||
|
|
||||||
t.assertAxiosError(exc);
|
t.assertAxiosError(exc);
|
||||||
@ -137,7 +139,6 @@ export async function runMerchantInstancesTest(t: GlobalTestState) {
|
|||||||
await merchantClient.getInstances();
|
await merchantClient.getInstances();
|
||||||
|
|
||||||
// Now, try some variations.
|
// Now, try some variations.
|
||||||
|
|
||||||
{
|
{
|
||||||
const url = merchant.makeInstanceBaseUrl();
|
const url = merchant.makeInstanceBaseUrl();
|
||||||
const resp = await axios.get(new URL("private/instances", url).href, {
|
const resp = await axios.get(new URL("private/instances", url).href, {
|
||||||
|
Loading…
Reference in New Issue
Block a user