Skip to content

Commit

Permalink
Merge pull request #353 from rezaamini-ir/master
Browse files Browse the repository at this point in the history
Add --force flag to pest:test command
  • Loading branch information
nunomaduro committed Jul 26, 2021
2 parents ca9d783 + 595bbe3 commit f387ca8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Laravel/Commands/PestTestCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ final class PestTestCommand extends Command
*
* @var string
*/
protected $signature = 'pest:test {name : The name of the file} {--unit : Create a unit test} {--dusk : Create a Dusk test} {--test-directory=tests : The name of the tests directory}';
protected $signature = 'pest:test {name : The name of the file} {--unit : Create a unit test} {--dusk : Create a Dusk test} {--test-directory=tests : The name of the tests directory} {--force : Overwrite the existing test file with the same name}';

/**
* The console command description.
Expand Down Expand Up @@ -56,7 +56,7 @@ public function handle(): void
File::makeDirectory(dirname($target), 0777, true, true);
}

if (File::exists($target)) {
if (File::exists($target) and !(bool) $this->option('force')) {
throw new InvalidConsoleArgument(sprintf('%s already exist', $target));
}

Expand Down

0 comments on commit f387ca8

Please sign in to comment.