Skip to content

Commit

Permalink
Remove unnecessary code and debug statements
Browse files Browse the repository at this point in the history
  • Loading branch information
Blair2004 committed May 3, 2024
1 parent 0f04e43 commit 85179d0
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 5 deletions.
3 changes: 0 additions & 3 deletions tests/Feature/AuthenticationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -258,9 +258,6 @@ public function testSubmitRegistrationForm()
'/auth/sign-up', $signUpDetails
);

$response->dump();
dump( $signUpDetails );

$response->assertRedirect( ns()->route( 'ns.register' ) );
$response->assertSessionHasErrors( [
'password_confirm' => 'The password confirm field must match password.',
Expand Down
1 change: 0 additions & 1 deletion tests/Feature/TestOtherGetRoutes.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ public function testDashboardGetRoutes()
$response->assertSee( 'dashboard-body' );
}
} else {
$response->dump();
throw new Exception( 'Not supported status detected.' );
}
}
Expand Down
1 change: 0 additions & 1 deletion tests/Traits/WithOrderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -772,7 +772,6 @@ private function registerOrderForCashRegister( Register $cashRegister, $data )
$response = $this->withSession( $this->app[ 'session' ]->all() )
->json( 'POST', 'api/orders', $orderDetails );

$response->dump();
$response->assertStatus( 200 );

return $response = json_decode( $response->getContent(), true );
Expand Down

0 comments on commit 85179d0

Please sign in to comment.