From e0f066bed350d0c903cf5985763c1455f56d3561 Mon Sep 17 00:00:00 2001 From: Martin Brennan Date: Mon, 22 Jul 2024 17:07:19 +1000 Subject: [PATCH] DEV: Skip flaky topic map (#28007) Followup https://github.com/discourse/discourse/commit/72fd509fd482351807488c7b590995b422ed1c92 Also skips the like counter part of this spec which is flaky --- spec/system/topic_map_spec.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spec/system/topic_map_spec.rb b/spec/system/topic_map_spec.rb index 4f63a5ced75..53d258deab9 100644 --- a/spec/system/topic_map_spec.rb +++ b/spec/system/topic_map_spec.rb @@ -71,8 +71,8 @@ describe "Topic Map", type: :system do # expect(topic_map.views_count).to eq(2) # likes count - expect(topic_map).to have_no_likes - topic_page.click_like_reaction_for(original_post) - expect(topic_map.likes_count).to eq 1 + # expect(topic_map).to have_no_likes + # topic_page.click_like_reaction_for(original_post) + # expect(topic_map.likes_count).to eq 1 end end