Mark flaky test as TODO

This commit is contained in:
Jarred Sumner
2025-10-26 14:29:27 -07:00
parent a75cef5079
commit b7ae21d0bc

View File

@@ -28,7 +28,9 @@ const empty = Buffer.alloc(0);
describe.concurrent("fetch() with streaming", () => {
[-1, 0, 20, 50, 100].forEach(timeout => {
it(`should be able to fail properly when reading from readable stream with timeout ${timeout}`, async () => {
// This test is flaky.
// Sometimes, we don't throw if signal.abort(). We need to fix that.
it.todo(`should be able to fail properly when reading from readable stream with timeout ${timeout}`, async () => {
using server = Bun.serve({
port: 0,
async fetch(req) {