PhyrePanel-mirror/web/tests/Browser/ExampleTest.php

21 lines
409 B
PHP
Raw Normal View History

2024-04-22 11:14:05 +00:00
<?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');
});
}
}