mirror of
https://github.com/appwrite/appwrite
synced 2026-04-28 08:57:57 +00:00
15 lines
464 B
PHP
15 lines
464 B
PHP
<?php
|
|
|
|
namespace Tests\E2E\Services\Health;
|
|
|
|
class StorageLocalTest extends HealthBase
|
|
{
|
|
public function testStorageLocal(): void
|
|
{
|
|
$response = $this->callGet('/health/storage/local');
|
|
$this->assertEquals(200, $response['headers']['status-code']);
|
|
$this->assertEquals('pass', $response['body']['status']);
|
|
$this->assertIsInt($response['body']['ping']);
|
|
$this->assertLessThan(100, $response['body']['ping']);
|
|
}
|
|
}
|