mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-21 02:39:10 -04:00
22 lines
522 B
PHP
22 lines
522 B
PHP
<?php
|
|
|
|
namespace Tests\Browser;
|
|
|
|
use Illuminate\Foundation\Testing\DatabaseMigrations;
|
|
use Laravel\Dusk\Browser;
|
|
use Tests\DuskTestCase;
|
|
|
|
class xLoginTest 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');
|
|
});
|
|
}
|
|
}
|