discourse/spec/system/discovery_category_spec.rb
Bianca Nenciu 635faaaf59
Some checks are pending
Licenses / run (push) Waiting to run
Linting / run (push) Waiting to run
Tests / core frontend (${{ matrix.browser }}) (Chrome) (push) Waiting to run
Tests / core frontend (${{ matrix.browser }}) (Firefox ESR) (push) Waiting to run
Tests / ${{ matrix.target }} ${{ matrix.build_type }} (system, plugins) (push) Waiting to run
Tests / ${{ matrix.target }} ${{ matrix.build_type }} (system, themes) (push) Waiting to run
Tests / ${{ matrix.target }} ${{ matrix.build_type }} (annotations, core) (push) Waiting to run
Tests / ${{ matrix.target }} ${{ matrix.build_type }} (backend, core) (push) Waiting to run
Tests / ${{ matrix.target }} ${{ matrix.build_type }} (backend, plugins) (push) Waiting to run
Tests / ${{ matrix.target }} ${{ matrix.build_type }} (frontend, plugins) (push) Waiting to run
Tests / ${{ matrix.target }} ${{ matrix.build_type }} (frontend, themes) (push) Waiting to run
Tests / ${{ matrix.target }} ${{ matrix.build_type }} (system, chat) (push) Waiting to run
Tests / ${{ matrix.target }} ${{ matrix.build_type }} (system, core) (push) Waiting to run
Tests / core frontend (${{ matrix.browser }}) (Firefox Evergreen) (push) Waiting to run
DEV: Add system spec for categories page (#29621)
Follow up to commit 948e283e0f.
2024-11-06 20:01:27 +02:00

33 lines
1.0 KiB
Ruby

# frozen_string_literal: true
describe "Discovery Category Routes", type: :system do
fab!(:category) do
Fabricate(:category, show_subcategory_list: true, subcategory_list_style: "boxes")
end
fab!(:subcategory1) { Fabricate(:category, parent_category: category) }
fab!(:subcategory2) { Fabricate(:category, parent_category: category) }
fab!(:subcategory3) { Fabricate(:category, parent_category: category) }
let(:discovery) { PageObjects::Pages::Discovery.new }
it "uses desktop_category_page style on categories and subcategories page" do
visit "/categories"
expect(page).to have_css(".category-list")
visit "/c/#{category.slug}/subcategories"
expect(page).to have_css(".category-list")
end
it "uses subcategory_list_style on category page" do
visit "/c/#{category.slug}"
expect(page).to have_css(".category-boxes")
visit "/c/#{category.slug}/all"
expect(page).to have_css(".category-boxes")
visit "/c/#{category.slug}/none"
expect(page).to have_css(".category-boxes")
end
end