Your ROOT_URL in app.ini is http://159.89.207.79:3000/ but you are visiting http://9.cron.my.id:3000/tribikram/AplusAgency/src/commit/8cc34ad24f07e05a87ede5f6f9282cf8bbd29cf8/tests/Feature/ExampleTest.php You should set ROOT_URL correctly, otherwise the web may not work correctly.
 
 
 
 

21 lines
380 B

<?php
namespace Tests\Feature;
// use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class ExampleTest extends TestCase
{
/**
* A basic test example.
*
* @return void
*/
public function test_the_application_returns_a_successful_response()
{
$response = $this->get('/');
$response->assertStatus(200);
}
}