Skip to content

Commit 9d8c179

Browse files
committed
style(codex): format live test for current oxfmt
1 parent 36b2bd4 commit 9d8c179

1 file changed

Lines changed: 2 additions & 7 deletions

File tree

extensions/codex/src/app-server/native-subagent-monitor.live.test.ts

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ import { isJsonObject } from "./protocol.js";
1818
import { createIsolatedCodexAppServerClient } from "./shared-client.js";
1919

2020
const LIVE =
21-
process.env.OPENCLAW_LIVE_TEST === "1" &&
22-
process.env.OPENCLAW_LIVE_CODEX_NATIVE_SUBAGENT === "1";
21+
process.env.OPENCLAW_LIVE_TEST === "1" && process.env.OPENCLAW_LIVE_CODEX_NATIVE_SUBAGENT === "1";
2322
const describeLive = LIVE ? describe : describe.skip;
2423

2524
type RecordedDelivery = {
@@ -54,11 +53,7 @@ function createDeliveryRecorder(taskRecords: AgentHarnessTaskRecord[] = []) {
5453
};
5554
}
5655

57-
async function waitFor<T>(
58-
probe: () => T | undefined,
59-
timeoutMs: number,
60-
what: string,
61-
): Promise<T> {
56+
async function waitFor<T>(probe: () => T | undefined, timeoutMs: number, what: string): Promise<T> {
6257
const deadline = Date.now() + timeoutMs;
6358
while (Date.now() < deadline) {
6459
const value = probe();

0 commit comments

Comments
 (0)