New_Micro_Learning/backend/tests/Feature/Api/HealthTest.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');
}
}