My code looks like this,
const octokit = new Octokit({
auth: process.env.auth,
});
const queries = JSON.stringify(event.queryStringParameters);
const repos = await octokit.request(`GET /repos/{org}/{repo}/tarball`);
I am able to mock the octokit object, but unable to mock this,
octokit.request(`GET /repos/{org}/{repo}/tarball`)