1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29/* global test, expect, beforeAll, afterAll, Bun */ let server; beforeAll(() => { server = Bun.serve({ port: 3002, fetch(req) { return new Response(`Bun!`); }, }); }); afterAll(() => { server.stop(); }); test('runs in bun', async () => { const res = await Bun.fetch('http://localhost:3002'); const body = await res.text(); expect(body).toBe('Bun!'); })