Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
driesvints committed Jan 9, 2024
1 parent a9b0df3 commit ffc0f58
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/Feature/CheckoutTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@

class CheckoutTest extends FeatureTestCase
{
/**
* @param \Illuminate\Routing\Router $router
*/
protected function defineRoutes($router): void
{
$router->get('/home', fn () => 'Hello World!')->name('home');
}

public function test_customers_can_start_a_product_checkout_session()
{
$user = $this->createCustomer('customers_can_start_a_product_checkout_session');
Expand Down

0 comments on commit ffc0f58

Please sign in to comment.