1

所以我正在运行我的网站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?

4

1 回答 1

9

感谢@Sven 的回答

  1. 更新.env文件。设置APP_URL属性

  2. 检查config/app.php文件。url属性应该是这样的'url' => env('APP_URL', 'http://localhost')(在我的情况下,这就是问题所在)

于 2017-07-17T14:20:28.607 回答