所以我以http://localhost:8080
运行我的网站,下面是我的测试:
public function testExample() {
$this->browse( function ( Browser $browser ) {
$browser->visit( '/' )
->assertTitle( 'Welcome to Mysite' );
} );
}
在运行php artisan dusk
时,会打开错误的网址http://localhost
。如果我提到完整的网址,那就可以了。
如何让它打开正确的网址?
答案 0 :(得分:6)
感谢@Sven answer。
更新.env
文件。设置APP_URL
属性
检查config/app.php
文件。 url
property应该是这样'url' => env('APP_URL', 'http://localhost')
(在我的情况下,这就是问题)