17 خطوط
368 B
PHP
17 خطوط
368 B
PHP
<?php
|
|
|
|
namespace Tests\Feature\Api;
|
|
|
|
use Tests\TestCase;
|
|
|
|
class HealthTest extends TestCase
|
|
{
|
|
public function test_versioned_health_endpoint_reports_deployment_mode(): void
|
|
{
|
|
$this->getJson('/api/v1/health')
|
|
->assertOk()
|
|
->assertJsonPath('data.status', 'ok')
|
|
->assertJsonPath('data.deploymentMode', 'saas');
|
|
}
|
|
}
|