mirror of
https://ghfast.top/https://github.com/discourse/discourse-ai.git
synced 2026-07-16 11:36:23 +08:00
15 lines
333 B
Ruby
15 lines
333 B
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.describe "Admin dashboard", type: :system do
|
|
fab!(:admin)
|
|
|
|
it "displays the sentiment dashboard" do
|
|
SiteSetting.ai_sentiment_enabled = true
|
|
sign_in(admin)
|
|
|
|
visit "/admin"
|
|
find(".navigation-item.sentiment").click()
|
|
|
|
expect(page).to have_css(".section.sentiment")
|
|
end
|
|
end
|