Skip to content

Commit 0c9111d

Browse files
committed
style: format application.ts
1 parent d963ae6 commit 0c9111d

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

integration/models/application.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -187,10 +187,7 @@ export const application = (
187187
}).trim();
188188
log(`Serve process ${proc.pid} status after 10s: ${procAlive}`);
189189
// Check port binding
190-
const portCheck = execSync(
191-
`lsof -i :${port} -P -n 2>&1 || echo "(lsof: no results)"`,
192-
{ encoding: 'utf-8' },
193-
);
190+
const portCheck = execSync(`lsof -i :${port} -P -n 2>&1 || echo "(lsof: no results)"`, { encoding: 'utf-8' });
194191
log(`Port ${port} check:\n${portCheck}`);
195192
// Check process tree
196193
const pstree = execSync(`pstree -p ${proc.pid} 2>&1 || echo "(pstree failed)"`, { encoding: 'utf-8' });

0 commit comments

Comments
 (0)