commit
4d3be4c295
16
tests/Feature/Common/DashboardTest.php
Normal file
16
tests/Feature/Common/DashboardTest.php
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Tests\Feature\Common;
|
||||||
|
|
||||||
|
use Tests\Feature\FeatureTestCase;
|
||||||
|
|
||||||
|
class DashboardTest extends FeatureTestCase
|
||||||
|
{
|
||||||
|
public function testItShouldSeeDashboard()
|
||||||
|
{
|
||||||
|
$this->loginAs()
|
||||||
|
->get(url('/'))
|
||||||
|
->assertStatus(200)
|
||||||
|
->assertSeeText(trans('general.dashboard'));
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user