mirror of
https://github.com/PhyreApps/PhyrePanel.git
synced 2024-11-22 15:40:25 +00:00
20 lines
409 B
PHP
20 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');
|
|
});
|
|
}
|
|
}
|