@@ -22,12 +22,12 @@ public function authenticated_users_will_directly_create_checkout_session()
2222
2323 $ component = Livewire::test (MobilePricing::class);
2424 $ component ->assertSeeHtml ([
25- 'wire:click="createCheckoutSession( \'mini \')" ' ,
25+ // 'wire:click="createCheckoutSession(\'mini\')"',
2626 'wire:click="createCheckoutSession( \'pro \')" ' ,
2727 'wire:click="createCheckoutSession( \'max \')" ' ,
2828 ]);
2929 $ component ->assertDontSeeHtml ([
30- '@click="$dispatch( \'open-purchase-modal \', { plan: \'mini \' })" ' ,
30+ // '@click="$dispatch(\'open-purchase-modal\', { plan: \'mini\' })"',
3131 '@click="$dispatch( \'open-purchase-modal \', { plan: \'pro \' })" ' ,
3232 '@click="$dispatch( \'open-purchase-modal \', { plan: \'max \' })" ' ,
3333 ]);
@@ -41,12 +41,12 @@ public function guest_users_see_purchase_modal_component()
4141 Livewire::test (MobilePricing::class)
4242 ->assertSeeLivewire ('purchase-modal ' )
4343 ->assertSeeHtml ([
44- '@click="$dispatch( \'open-purchase-modal \', { plan: \'mini \' })" ' ,
44+ // '@click="$dispatch(\'open-purchase-modal\', { plan: \'mini\' })"',
4545 '@click="$dispatch( \'open-purchase-modal \', { plan: \'pro \' })" ' ,
4646 '@click="$dispatch( \'open-purchase-modal \', { plan: \'max \' })" ' ,
4747 ])
4848 ->assertDontSeeHtml ([
49- 'wire:click="createCheckoutSession( \'mini \')" ' ,
49+ // 'wire:click="createCheckoutSession(\'mini\')"',
5050 'wire:click="createCheckoutSession( \'pro \')" ' ,
5151 'wire:click="createCheckoutSession( \'max \')" ' ,
5252 ]);
0 commit comments