⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.1
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
invoice
/
vendor
/
laravel
/
dusk
/
src
/
Console
/
View File Name :
DuskFailsCommand.php
<?php namespace Laravel\Dusk\Console; class DuskFailsCommand extends DuskCommand { /** * The name and signature of the console command. * * @var string */ protected $signature = 'dusk:fails {--browse : Open a browser instead of using headless mode} {--without-tty : Disable output to TTY} {--pest : Run the tests using Pest}'; /** * The console command description. * * @var string */ protected $description = 'Run the failing Dusk tests from the last run and stop on failure'; /** * Get the array of arguments for running PHPUnit. * * @param array $options * @return array */ protected function phpunitArguments($options) { return array_unique(array_merge(parent::phpunitArguments($options), [ '--cache-result', '--order-by=defects', '--stop-on-failure', ])); } }