2024-01-19 13:27:33 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
RSpec.describe "Admin dashboard", type: :system do
|
|
|
|
fab!(:admin)
|
|
|
|
|
2024-10-10 12:02:31 -03:00
|
|
|
xit "displays the sentiment dashboard" do
|
2024-01-19 13:27:33 +01:00
|
|
|
SiteSetting.ai_sentiment_enabled = true
|
|
|
|
sign_in(admin)
|
|
|
|
|
|
|
|
visit "/admin"
|
|
|
|
find(".navigation-item.sentiment").click()
|
|
|
|
|
|
|
|
expect(page).to have_css(".section.sentiment")
|
|
|
|
end
|
2024-11-25 15:51:01 -03:00
|
|
|
|
|
|
|
xit "displays the emotion table with links" do
|
|
|
|
SiteSetting.ai_sentiment_enabled = true
|
|
|
|
sign_in(admin)
|
|
|
|
|
|
|
|
visit "/admin"
|
|
|
|
find(".navigation-item.sentiment").click()
|
|
|
|
|
|
|
|
expect(page).to have_css(".admin-report.emotion-love .cell.value.today-count a")
|
|
|
|
end
|
2024-01-19 13:27:33 +01:00
|
|
|
end
|