We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d963ae6 commit 0c9111dCopy full SHA for 0c9111d
1 file changed
integration/models/application.ts
@@ -187,10 +187,7 @@ export const application = (
187
}).trim();
188
log(`Serve process ${proc.pid} status after 10s: ${procAlive}`);
189
// Check port binding
190
- const portCheck = execSync(
191
- `lsof -i :${port} -P -n 2>&1 || echo "(lsof: no results)"`,
192
- { encoding: 'utf-8' },
193
- );
+ const portCheck = execSync(`lsof -i :${port} -P -n 2>&1 || echo "(lsof: no results)"`, { encoding: 'utf-8' });
194
log(`Port ${port} check:\n${portCheck}`);
195
// Check process tree
196
const pstree = execSync(`pstree -p ${proc.pid} 2>&1 || echo "(pstree failed)"`, { encoding: 'utf-8' });
0 commit comments