export function assertRequestMatchedSnapshot( sdkFunction: any, nthCall = 0, ): void { const call = sdkFunction.mock.calls[nthCall]; expect(call).toMatchSnapshot(); }