aboutsummaryrefslogtreecommitdiff
path: root/test/regression/issue/02499-repro.ts
blob: 3c50e53e5b020522f1ec303d6f20ca70defaa4bc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
const server = Bun.serve({
  port: 0,
  async fetch(req) {
    console.log(await req.json());
    return new Response();
  },
});
console.log(
  JSON.stringify({
    hostname: server.hostname,
    port: server.port,
  }),
);

(async function () {
  for await (let line of console) {
    if (line === "--CLOSE--") {
      process.exit(0);
    }
  }
})();