Compare commits

..

1 Commits

Author SHA1 Message Date
Dax
07d3d6c9f6 add opencode-ai to trusted dependencies (#20330) 2025-06-11 21:47:51 -07:00
2 changed files with 5 additions and 4 deletions

View File

@@ -266,6 +266,7 @@ nodent-runtime
nx
odiff-bin
oniguruma
opencode-ai
optipng-bin
oracledb
os-dns-native

View File

@@ -374,7 +374,7 @@ describe("Bun.file in serve routes", () => {
"concurrent requests for %s",
async filename => {
const batchSize = 16;
const iterations = 2;
const iterations = 10;
async function iterate() {
const promises = Array.from({ length: batchSize }, () =>
@@ -388,10 +388,10 @@ describe("Bun.file in serve routes", () => {
// Verify all responses are identical
const expected = results[0];
results.forEach(result => {
expect(result.length).toBe(expected.length);
for (const result of results) {
expect(result?.length).toBe(expected.length);
expect(result).toBe(expected);
});
}
}
for (let i = 0; i < iterations; i++) {