customer authentication unit test completed

This commit is contained in:
Prashant Singh 2019-02-23 17:33:41 +05:30
parent 5e704a4979
commit 7014b32e9b
1 changed files with 1 additions and 2 deletions

View File

@ -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'));