2023-02-16 10:51:42 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require "rails_helper"
|
|
|
|
|
|
|
|
describe "inbox/_push_settings.haml", type: :view do
|
|
|
|
subject(:rendered) { render }
|
|
|
|
|
|
|
|
it "has a button to enable push notifications" do
|
2023-02-16 12:50:12 -08:00
|
|
|
expect(rendered).to have_css(%(button[data-action="push-enable"]))
|
2023-02-16 10:51:42 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
it "has a button to dismiss the view" do
|
2023-02-16 12:50:12 -08:00
|
|
|
expect(rendered).to have_css(%(button[data-action="push-dismiss"]))
|
2023-02-16 10:51:42 -08:00
|
|
|
end
|
|
|
|
end
|