DEV: Skip flaky specs (#23523)

This commit is contained in:
Jarek Radosz 2023-09-12 02:01:30 +02:00 committed by GitHub
parent 60e7463476
commit 80dcaf1e98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ describe "Emoji deny list", type: :system do
before { SiteSetting.emoji_deny_list = "" }
let(:site_settings_page) { PageObjects::Pages::AdminSettings.new }
it "should allow admin to update emoji deny list" do
skip "should allow admin to update emoji deny list" do
site_settings_page.visit_category("posting")
site_settings_page.select_from_emoji_list("emoji_deny_list", "fu", false)

View File

@ -328,7 +328,7 @@ describe "New topic list", type: :system do
expect(tabs_toggle.topics_tab).to be_inactive
end
it "live-updates the counts shown on the tabs" do
skip "live-updates the counts shown on the tabs" do
Fabricate(:post, topic: Fabricate(:topic, tags: [tag]))
visit("/tag/#{tag.name}/l/new")