13 lines
405 B
PHP
13 lines
405 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Services\External\LivenessReading;
|
|
|
|
it('warn() даёт amber с деталью и ключом', function () {
|
|
$r = LivenessReading::warn('proxy_market', 'истекает 04.08.2026 (5 дн.)');
|
|
expect($r->light)->toBe('amber');
|
|
expect($r->serviceKey)->toBe('proxy_market');
|
|
expect($r->detail)->toBe('истекает 04.08.2026 (5 дн.)');
|
|
});
|