Commit 69908bd6 authored by Dan Davison's avatar Dan Davison

Merge branch 'qa-add-reload-group-audit-log-spec' into 'master'

Add reload to group audit logs spec

See merge request gitlab-org/gitlab!22164
parents e83e2d4c b12d71e7
......@@ -13,7 +13,13 @@ module QA
Page::Group::Menu.perform(&:go_to_audit_events_settings)
expected_events.each do |expected_event|
expect(page).to have_text(expected_event)
# Sometimes the audit logs are not displayed in the UI
# right away so a refresh may be needed.
# https://gitlab.com/gitlab-org/gitlab/issues/119203
# TODO: https://gitlab.com/gitlab-org/gitlab/issues/195424
Support::Retrier.retry_on_exception(reload_page: page) do
expect(page).to have_text(expected_event)
end
end
end
end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment