5 lines
164 B
PHP
5 lines
164 B
PHP
<?php
|
|
header("Content-Type: application/json");
|
|
$proc = @shell_exec("pgrep -af "playwright test" | head -5");
|
|
echo json_encode(["running"=>trim($proc ?: "none")]);
|