1
0
Fork 0
mirror of https://github.com/archtechx/airwire-demo.git synced 2025-12-12 00:24:03 +00:00
airwire-demo/tests/Feature/ExampleTest.php
2021-06-21 13:37:57 +01:00

22 lines
366 B
PHP

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