run code below in MacOS arm64. build wasmedge-quickjs from latest main branch, and use wasmedge 0.14.1
import { fetch } from 'http';
async function test_fetch() {
try {
print('test_fetch start');
let r = await fetch('https://httpbin.org/delay/10');
print('test_fetch\n', await r.text());
} catch (e) {
print(e);
}
}
test_fetch();
during the fetch progress, seems there is a infinity loop
