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:
parent
25decec633
commit
d001c797ab
1 changed files with 2 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue