mirror of
https://github.com/PhyreApps/PhyrePanel.git
synced 2024-11-22 23:50:33 +00:00
21 lines
409 B
PHP
21 lines
409 B
PHP
|
<?php
|
||
|
|
||
|
namespace Tests\Browser;
|
||
|
|
||
|
use Illuminate\Foundation\Testing\DatabaseMigrations;
|
||
|
use Laravel\Dusk\Browser;
|
||
|
use Tests\DuskTestCase;
|
||
|
|
||
|
class ExampleTest extends DuskTestCase
|
||
|
{
|
||
|
/**
|
||
|
* A basic browser test example.
|
||
|
*/
|
||
|
public function testBasicExample(): void
|
||
|
{
|
||
|
$this->browse(function (Browser $browser) {
|
||
|
$browser->visit('http://127.0.0.1:8443');
|
||
|
});
|
||
|
}
|
||
|
}
|