Commit 9f53ad3a authored by Jasper Maes's avatar Jasper Maes

Rails5: fix flaky mysql reset pipeline minutes spec

parent 06ead455
---
title: 'Rails5: fix flaky mysql reset pipeline minutes spec'
merge_request: 8122
author: Jasper Maes
type: other
......@@ -14,13 +14,17 @@ describe 'Reset namespace pipeline minutes' do
end
it 'resets pipeline minutes' do
time = Time.now
Timecop.freeze(time) do
click_link 'Reset pipeline minutes'
end
expect(page).to have_selector('.flash-notice')
expect(current_path).to include(namespace.name)
expect(namespace.namespace_statistics.reload.shared_runners_seconds).to eq(0)
expect(namespace.namespace_statistics.reload.shared_runners_seconds_last_reset).to be_like_time(Time.now)
expect(namespace.namespace_statistics.reload.shared_runners_seconds_last_reset).to be_like_time(time)
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