Skip to content

Commit

Permalink
Enable Leak tests for all frameworks
Browse files Browse the repository at this point in the history
  • Loading branch information
ardatan committed Dec 27, 2024
1 parent 69a2b8e commit 693e601
Show file tree
Hide file tree
Showing 2 changed files with 290 additions and 292 deletions.
4 changes: 2 additions & 2 deletions packages/server/test/proxy.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { runTestsForEachServerImpl } from './test-server';
describe('Proxy', () => {
if (globalThis.Bun) {
// Bun does not support streams on Request body
// TODO: Readable streams for fetch() are not available on Bun
it.skip('skipping test on Bun', () => {});
return;
}
Expand Down Expand Up @@ -112,8 +113,7 @@ describe('Proxy', () => {
},
{
// TODO: Flakey on native fetch
// TODO: Readable streams for fetch() are not available on Bun
noNativeFetch: !!process.env.LEAK_TEST || !!globalThis.Bun,
noNativeFetch: !!process.env.LEAK_TEST,
},
);
});
Loading

0 comments on commit 693e601

Please sign in to comment.