From 56b0de3896361b6a87523537c8f5b450d2fe0807 Mon Sep 17 00:00:00 2001 From: Alan Guo Xiang Tan Date: Thu, 22 Feb 2024 20:09:22 +0800 Subject: [PATCH] DEV: Remove `capture_logs: true` metadata (#547) Why this change? We believe we have figured out the problem and not longer need the debugging information. --- spec/system/assign_topic_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/system/assign_topic_spec.rb b/spec/system/assign_topic_spec.rb index 873ea5c..fd4a822 100644 --- a/spec/system/assign_topic_spec.rb +++ b/spec/system/assign_topic_spec.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -describe "Assign | Assigning topics", type: :system, capture_log: true do +describe "Assign | Assigning topics", type: :system do let(:topic_page) { PageObjects::Pages::Topic.new } let(:assign_modal) { PageObjects::Modals::Assign.new } fab!(:staff_user) { Fabricate(:user, groups: [Group[:staff]]) }