I tried to run Dusk from an URL:
Route::get('/test', function()
{
$_SERVER['argv'] = [];
Artisan::call('dusk');
});
And I did as suggested in this comment and still cannot run the test from URL.
I tried to run Dusk from an URL:
Route::get('/test', function()
{
$_SERVER['argv'] = [];
Artisan::call('dusk');
});
And I did as suggested in this comment and still cannot run the test from URL.