所以我正在运行我的网站http://localhost:8080
,下面是我的测试:
public function testExample() {
$this->browse( function ( Browser $browser ) {
$browser->visit( '/' )
->assertTitle( 'Welcome to Mysite' );
} );
}
在运行php artisan dusk
时,它会打开错误的 URL,即http://localhost
. 如果我提到完整的 URL,那么它可以工作。
如何让它打开正确的 URL?