DEV: Fix flaky chat system tests (#29104)

`PageObjects::Pages::ChatThread#has_no_loading_skeleton?` was broken
because `.chat-thread__messages` is no longer a valid class.
This commit is contained in:
Alan Guo Xiang Tan
2024-10-07 14:20:19 +08:00
committed by GitHub
parent ec7703e622
commit dc3c94961c

View File

@ -80,7 +80,7 @@ module PageObjects
end
def has_no_loading_skeleton?
has_no_css?(".chat-thread__messages .chat-skeleton")
has_no_css?(".chat-thread .chat-skeleton")
end
def type_in_composer(input)