Captures the current working tree after theme slots, ArticleAccess, and the payment / paid-content plugins so subsequent work has a reviewable git history.
17 lines
298 B
PHP
17 lines
298 B
PHP
<?php
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
use Tests\TestCase;
|
|
|
|
class ExampleTest extends TestCase
|
|
{
|
|
use RefreshDatabase;
|
|
|
|
public function test_health_endpoint_returns_successful_response(): void
|
|
{
|
|
$this->get('/up')->assertOk();
|
|
}
|
|
}
|