in my service, we are using "got" as package to issue http and always have issues (i.e. SyntaxError: Cannot use import statement outside a module) when to run jest test enter image description here
import got from "got"export const http = async () => { const data = await got.post('https://httpbin.org/anything', { json: { hello: 'world' } }).json();
console.log(data); }