Skip to content

Commit 9a865aa

Browse files
committed
test: health
1 parent db8e89a commit 9a865aa

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

tests/Feature/HealthTest.php

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?php
2+
3+
namespace Feature;
4+
5+
use Tests\TestCase;
6+
7+
class HealthTest extends TestCase
8+
{
9+
public function testCanRetrieveHealthInfo(): void
10+
{
11+
$response = $this->client()->health->retrieve();
12+
$this->assertIsBool($response['ok']);
13+
}
14+
}

0 commit comments

Comments
 (0)