create(); $user->setRelation('notificationPreference', NotificationPreference::factory()->make([ 'account_disconnected' => false, ])); expect($user->wantsEmailFor(Type::PostAtRisk))->toBeFalse(); $user->setRelation('notificationPreference', NotificationPreference::factory()->make([ 'account_disconnected' => true, ])); expect($user->wantsEmailFor(Type::PostAtRisk))->toBeTrue(); });