* feat: hide the logo_svg behaind a featur flag if we've ennabled it * feat: show the input field iis the feature flag is enabled * feat: show the new logo when the feature fkag is enabled * chore: change working * feat: add a logo spec * fix: with the updated changes we show a community name if there is no logo, hence we sometimes would need to update the community name instead of the logo on preview * fix: use innerText * Update app/javascript/admin/controllers/config_controller.js Co-authored-by: Julianna Tetreault <32834804+juliannatetreault@users.noreply.github.com> * empty commiit * empty commiit Co-authored-by: Julianna Tetreault <32834804+juliannatetreault@users.noreply.github.com>
58 lines
1.5 KiB
Ruby
58 lines
1.5 KiB
Ruby
require "rails_helper"
|
|
|
|
RSpec.describe "Logo behaviour with creator_onboarding Feature Flag", type: :system do
|
|
let!(:user) { create(:user) }
|
|
let(:logo_svg) { "<svg>Some svg</svg>" }
|
|
let(:resized_logo) { "default.png" }
|
|
|
|
before do
|
|
sign_in user
|
|
end
|
|
|
|
context "when Feature flag creator_onboarding is disabled" do
|
|
before do
|
|
allow(Settings::General).to receive(:logo_svg).and_return(logo_svg)
|
|
allow(FeatureFlag).to receive(:enabled?).with(:creator_onboarding).and_return(false)
|
|
end
|
|
|
|
it "renders the logo_svg" do
|
|
visit root_path
|
|
expect(page).to have_css(".site-logo")
|
|
within(".site-logo") do
|
|
expect(page.html).to have_text("Some svg")
|
|
end
|
|
end
|
|
end
|
|
|
|
context "when Feature flag creator_onboarding is enabled" do
|
|
before do
|
|
allow(FeatureFlag).to receive(:enabled?).with(:creator_onboarding).and_return(true)
|
|
end
|
|
|
|
context "with an image set" do
|
|
before do
|
|
allow(Settings::General).to receive(:resized_logo).and_return(resized_logo)
|
|
end
|
|
|
|
it "renders the resized_logo" do
|
|
visit root_path
|
|
within(".site-logo") do
|
|
expect(page.find(".site-logo__img")["src"]).to have_content(resized_logo)
|
|
end
|
|
end
|
|
end
|
|
|
|
context "without an image set" do
|
|
before do
|
|
allow(Settings::General).to receive(:resized_logo).and_return(nil)
|
|
end
|
|
|
|
it "renders the the community name" do
|
|
visit root_path
|
|
within(".truncate-at-2") do
|
|
expect(page).to have_text("DEV(local)")
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|