fix: apply biome formatting to daemon supervisor test files

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Mohamed Boudra
2026-04-11 06:04:53 +00:00
parent 04a3f4bf5b
commit 24d9553e17
4 changed files with 4 additions and 12 deletions

View File

@@ -146,9 +146,7 @@ try {
async () => {
const status = await readDaemonStatus(paseoHome);
return (
status.localDaemon === "running" &&
status.pid !== null &&
isProcessRunning(status.pid)
status.localDaemon === "running" && status.pid !== null && isProcessRunning(status.pid)
);
},
120000,

View File

@@ -158,9 +158,7 @@ try {
async () => {
const status = await readDaemonStatus(paseoHome);
return (
status.localDaemon === "running" &&
status.pid !== null &&
isProcessRunning(status.pid)
status.localDaemon === "running" && status.pid !== null && isProcessRunning(status.pid)
);
},
120000,

View File

@@ -148,9 +148,7 @@ try {
async () => {
const status = await readDaemonStatus(paseoHome);
return (
status.localDaemon === "running" &&
status.pid !== null &&
isProcessRunning(status.pid)
status.localDaemon === "running" && status.pid !== null && isProcessRunning(status.pid)
);
},
120000,

View File

@@ -147,9 +147,7 @@ try {
async () => {
const status = await readDaemonStatus(paseoHome);
return (
status.localDaemon === "running" &&
status.pid !== null &&
isProcessRunning(status.pid)
status.localDaemon === "running" && status.pid !== null && isProcessRunning(status.pid)
);
},
120000,