From 97df6e3e924012da373fab5db368afe634417e6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Batuhan=20Ba=C5=9F?= Date: Thu, 27 Dec 2018 12:48:02 +0300 Subject: [PATCH] Dashboard Test Added --- tests/Feature/Common/DashboardTest.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 tests/Feature/Common/DashboardTest.php diff --git a/tests/Feature/Common/DashboardTest.php b/tests/Feature/Common/DashboardTest.php new file mode 100644 index 000000000..5135f0975 --- /dev/null +++ b/tests/Feature/Common/DashboardTest.php @@ -0,0 +1,16 @@ +loginAs() + ->get(url('/')) + ->assertStatus(200) + ->assertSeeText(trans('general.dashboard')); + } +} \ No newline at end of file