Unverified Commit ca64e2d4 authored by Viral Solani's avatar Viral Solani Committed by GitHub

Merge pull request #85 from viralsolani/analysis-qMD2VL

Apply fixes from StyleCI
parents f19c71af a251c3d6
...@@ -3,7 +3,6 @@ ...@@ -3,7 +3,6 @@
namespace Tests\Feature; namespace Tests\Feature;
use Tests\BrowserKitTestCase; use Tests\BrowserKitTestCase;
use Illuminate\Foundation\Testing\DatabaseMigrations;
class AuthTest extends BrowserKitTestCase class AuthTest extends BrowserKitTestCase
{ {
...@@ -11,9 +10,9 @@ class AuthTest extends BrowserKitTestCase ...@@ -11,9 +10,9 @@ class AuthTest extends BrowserKitTestCase
public function login_page_loads_properly() public function login_page_loads_properly()
{ {
$this->visit('/login') $this->visit('/login')
->see("Email") ->see('Email')
->see("Password") ->see('Password')
->see("Login") ->see('Login')
->dontSee('You are logged in!'); ->dontSee('You are logged in!');
} }
...@@ -38,7 +37,6 @@ class AuthTest extends BrowserKitTestCase ...@@ -38,7 +37,6 @@ class AuthTest extends BrowserKitTestCase
->see('These credentials do not match our records.'); ->see('These credentials do not match our records.');
}*/ }*/
/** @test */ /** @test */
public function users_can_login() public function users_can_login()
{ {
...@@ -49,5 +47,4 @@ class AuthTest extends BrowserKitTestCase ...@@ -49,5 +47,4 @@ class AuthTest extends BrowserKitTestCase
//->press('Login') //->press('Login')
->seePageIs('/login'); ->seePageIs('/login');
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment