Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions spec/system/viewing_search_banner_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
fab!(:topic)
let(:topic_page) { PageObjects::Pages::Topic.new }

it "should display the search banner below the site header when `plugin_outlet` theme setting is set to `below-site-header`" do
xit "should display the search banner below the site header when `plugin_outlet` theme setting is set to `below-site-header`" do
theme.update_setting(:plugin_outlet, "below-site-header")
theme.save!

Expand All @@ -15,7 +15,7 @@
expect(page).to_not have_css("#main-outlet .custom-search-banner")
end

it "should display the search banner above the main container when `plugin_outlet` theme setting is set to `above-main-container`" do
xit "should display the search banner above the main container when `plugin_outlet` theme setting is set to `above-main-container`" do
theme.update_setting(:plugin_outlet, "above-main-container")
theme.save!

Expand All @@ -24,7 +24,7 @@
expect(page).to have_css("#main-outlet .custom-search-banner")
end

it "should display the search icon when searching within a topic when search button text is present" do
xit "should display the search icon when searching within a topic when search button text is present" do
theme.update_setting(:show_on, "all")
theme.update_translation("search_banner.search_button_text", "Foo")
theme.save!
Expand Down