Skip to content

Commit

Permalink
Dashboard Test Added
Browse files Browse the repository at this point in the history
  • Loading branch information
Batuhan Baş committed Dec 27, 2018
1 parent e85397b commit 97df6e3
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions tests/Feature/Common/DashboardTest.php
Original file line number Diff line number Diff line change
@@ -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'));
}
}

0 comments on commit 97df6e3

Please sign in to comment.