Skip to content

Commit 69e95ca

Browse files
committed
chore(container): reformat test.js
Biome/Prettier formatting only — arrow fn single-line wrap and two multi-line console.log wraps. No logic change.
1 parent 813065f commit 69e95ca

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

container/test.js

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -203,8 +203,7 @@ function runTests() {
203203
"MAX_THINKING_TOKENS",
204204
"CLAUDE_CODE_DISABLE_ADAPTIVE_THINKING",
205205
];
206-
const readJson = (filePath) =>
207-
JSON.parse(fs.readFileSync(filePath, "utf8"));
206+
const readJson = (filePath) => JSON.parse(fs.readFileSync(filePath, "utf8"));
208207
const isObject = (value) =>
209208
value !== null && typeof value === "object" && !Array.isArray(value);
210209
const merge = (base, overlay) => {
@@ -287,9 +286,13 @@ function runTests() {
287286
omcFeatureValid = false;
288287
}
289288
if (!/omc proxy (start|stop|restart)/.test(omcInstall)) {
290-
console.log("✓ Test 10.2: oh-my-claude install avoids stale daemon commands");
289+
console.log(
290+
"✓ Test 10.2: oh-my-claude install avoids stale daemon commands",
291+
);
291292
} else {
292-
console.log("❌ Test 10.2: oh-my-claude install uses stale daemon commands");
293+
console.log(
294+
"❌ Test 10.2: oh-my-claude install uses stale daemon commands",
295+
);
293296
omcFeatureValid = false;
294297
}
295298
if (

0 commit comments

Comments
 (0)