Add render method to notification item component

This commit is contained in:
taitus
2024-06-25 17:08:03 +02:00
parent 1a8676f2d4
commit 1e6901ec34
3 changed files with 29 additions and 12 deletions

View File

@@ -0,0 +1,15 @@
require "rails_helper"
describe Layout::NotificationItemComponent do
it "is not rendered for anonymous users" do
render_inline Layout::NotificationItemComponent.new(nil)
expect(page).not_to be_rendered
end
it "is rendered for identified users" do
render_inline Layout::NotificationItemComponent.new(create(:user))
expect(page).to be_rendered
end
end