address ci

This commit is contained in:
Meghan Denny
2025-11-15 03:29:49 -08:00
parent 01be61b8a3
commit 1c6ce2dfe4
8 changed files with 20 additions and 16 deletions

View File

@@ -1,6 +1,6 @@
import { $, randomUUIDv7, sql, SQL } from "bun";
import { afterAll, describe, expect, mock, test } from "bun:test";
import { bunEnv, bunExe, isCI, isDockerEnabled, tempDirWithFiles } from "harness";
import { bunEnv, bunExe, isASAN, isCI, isDockerEnabled, tempDirWithFiles } from "harness";
import * as net from "node:net";
import path from "path";
const postgres = (...args) => new SQL(...args);
@@ -842,7 +842,7 @@ if (isDockerEnabled()) {
Bun.inspect(result);
});
test("query string memory leak test", async () => {
test.todoIf(isASAN)("query string memory leak test", async () => {
await using sql = postgres(options);
Bun.gc(true);
const rss = process.memoryUsage.rss();