From 7014b32e9b9a1a69eb10ca8beebc29517b836234 Mon Sep 17 00:00:00 2001 From: Prashant Singh Date: Sat, 23 Feb 2019 17:33:41 +0530 Subject: [PATCH] customer authentication unit test completed --- tests/Feature/Auth/AuthTest.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/Feature/Auth/AuthTest.php b/tests/Feature/Auth/AuthTest.php index 22effd640..157e4d5f5 100644 --- a/tests/Feature/Auth/AuthTest.php +++ b/tests/Feature/Auth/AuthTest.php @@ -68,7 +68,6 @@ class AuthTest extends TestCase config(['app.url' => 'http://127.0.0.1:8000']); $customers = app(Customer::class); - $customer = $customers->findOneByField('email', 'prashant@webkul.com'); $response = $this->post('/customer/login', [ @@ -116,7 +115,7 @@ class AuthTest extends TestCase { $customer = auth()->guard('customer')->user(); - dd('logout test', $customer); + // dd('logout test', $customer); $this->get(route('customer.session.destroy'));