Skip to content

Commit

Permalink
dont need to return. skipping is enough.
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonvarga committed May 15, 2024
1 parent 566cd37 commit ea6e56b
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 8 deletions.
2 changes: 0 additions & 2 deletions tests/Tags/User/LoginFormTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -230,8 +230,6 @@ public function it_handles_precognitive_requests()
{
if (! method_exists($this, 'withPrecognition')) {
$this->markTestSkipped();

return;
}

$response = $this
Expand Down
2 changes: 0 additions & 2 deletions tests/Tags/User/PasswordFormTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -297,8 +297,6 @@ public function it_handles_precognitive_requests()
{
if (! method_exists($this, 'withPrecognition')) {
$this->markTestSkipped();

return;
}

$this->actingAs(User::make()->password('mypassword')->save());
Expand Down
2 changes: 0 additions & 2 deletions tests/Tags/User/ProfileFormTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -320,8 +320,6 @@ public function it_handles_precognitive_requests()
{
if (! method_exists($this, 'withPrecognition')) {
$this->markTestSkipped();

return;
}

$this->actingAs(User::make()->save());
Expand Down
2 changes: 0 additions & 2 deletions tests/Tags/User/RegisterFormTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -467,8 +467,6 @@ public function it_handles_precognitive_requests()
{
if (! method_exists($this, 'withPrecognition')) {
$this->markTestSkipped();

return;
}

$response = $this
Expand Down

0 comments on commit ea6e56b

Please sign in to comment.