frankenphp/testdata/die.php
Kévin Dunglas e0cf262224
test: fix and refactor some flaky tests (#165)
* test: fix and refactor some flaky tests

* better fix for flush.php

* simpler DHA config
2023-07-10 18:46:04 +02:00

10 lines
132 B
PHP

<?php
do {
$ok = frankenphp_handle_request(function (): void {
echo 'Hello, world';
});
die();
} while ($ok);