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 @@
namespace Tests\Feature;
use Tests\BrowserKitTestCase;
use Illuminate\Foundation\Testing\DatabaseMigrations;
class AuthTest extends BrowserKitTestCase
{
......@@ -11,9 +10,9 @@ class AuthTest extends BrowserKitTestCase
public function login_page_loads_properly()
{
$this->visit('/login')
->see("Email")
->see("Password")
->see("Login")
->see('Email')
->see('Password')
->see('Login')
->dontSee('You are logged in!');
}
......@@ -27,7 +26,7 @@ class AuthTest extends BrowserKitTestCase
->see('The password field is required.');
}
/** @test */
/** @test */
/*public function test_login_failure_with_wrong_inputs()
{
$this->visit("/login")
......@@ -38,7 +37,6 @@ class AuthTest extends BrowserKitTestCase
->see('These credentials do not match our records.');
}*/
/** @test */
public function users_can_login()
{
......@@ -49,5 +47,4 @@ class AuthTest extends BrowserKitTestCase
//->press('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