discourse/plugins/chat/spec/models/user_option_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
247 B
Ruby
Raw Normal View History

# frozen_string_literal: true
require "rails_helper"
RSpec.describe UserOption do
describe "#chat_separate_sidebar_mode" do
it "is present" do
expect(described_class.new.chat_separate_sidebar_mode).to eq("default")
end
end
end