laravel-notification-channels / twilio

Twilio notifications channel for Laravel
https://laravel-notification-channels.com
227 stars 36 forks source link

How to disable twilio sending sms during phpunit testing? #120

Closed ajcastro closed 3 years ago

ajcastro commented 3 years ago

Hi there!

How to disable twilio sending sms during phpunit testing?

atymic commented 3 years ago

Modify your routeNotificationsFor method to return null if you're in the testing env.

ajcastro commented 3 years ago

@atymic that does not work because the TwilioChannel::getTo() checks the user if it has phone_number and returns it causing it to still send the sms.

ajcastro commented 3 years ago

@atymic I sent a PR. Hope it helps. Thanks!