a2172f0851
Hopefully this will result in slightly better code.
22 lines
363 B
PHP
22 lines
363 B
PHP
<?php
|
|
|
|
namespace Tests\Browser;
|
|
|
|
use Tests\DuskTestCase;
|
|
|
|
class ExampleTest extends DuskTestCase
|
|
{
|
|
/**
|
|
* A basic browser test example.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testBasicExample()
|
|
{
|
|
$this->browse(function ($browser) {
|
|
$browser->visit('/')
|
|
->assertSee('Login');
|
|
});
|
|
}
|
|
}
|