mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 18:05:37 +08:00
91b31860a1
* Feature: Push notifications for Android Notification config for desktop and mobile are merged. Desktop notifications stay as they are for desktop views. If mobile mode, push notifications are enabled. Added push notification subscriptions in their own table, rather than through custom fields. Notification banner prompts appear for both mobile and desktop when enabled.
15 lines
377 B
Ruby
15 lines
377 B
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe PushNotificationPusher do
|
|
|
|
it "returns badges url by default" do
|
|
expect(PushNotificationPusher.get_badge).to eq("/assets/push-notifications/discourse.png")
|
|
end
|
|
|
|
it "returns custom badges url" do
|
|
SiteSetting.push_notifications_icon_url = "/test.png"
|
|
expect(PushNotificationPusher.get_badge).to eq("/test.png")
|
|
end
|
|
|
|
end
|