1
0
Fork 0
mirror of https://github.com/archtechx/airwire-demo.git synced 2025-12-12 08:34:03 +00:00

Fixes out of the box tests.

This commit is contained in:
Joao Patricio 2021-06-21 13:37:57 +01:00
parent 25decec633
commit d001c797ab

View file

@ -2,7 +2,6 @@
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class ExampleTest extends TestCase
@ -15,7 +14,9 @@ class ExampleTest extends TestCase
public function test_example()
{
$response = $this->get('/');
$response->assertStatus(302);
$response = $this->get('/vue');
$response->assertStatus(200);
}
}