Files
c-cms-legacy/tests/Browser/LoginTest.php
Mathieu Lagace 09523f2bb0 Update to 6.6
2019-12-04 20:58:20 -05:00

22 lines
521 B
PHP

<?php
namespace Tests\Browser;
use Illuminate\Foundation\Testing\DatabaseMigrations;
use Laravel\Dusk\Browser;
use Tests\DuskTestCase;
class LoginTest extends DuskTestCase
{
public function testLogin()
{
$this->browse(function (Browser $browser) {
$browser->visit('/login')
->type('email','admin@exvps.ca')
->type('password','SuperAdmin')
->click('@login-button')
->assertPathIs('/admin');
});
}
}