mirror of
https://github.com/discourse/discourse.git
synced 2024-11-28 16:03:59 +08:00
17 lines
282 B
Ruby
17 lines
282 B
Ruby
RSpec.configure do |config|
|
|
config.color_enabled = true
|
|
end
|
|
|
|
def wait_for(timeout_milliseconds)
|
|
timeout = (timeout_milliseconds + 0.0) / 1000
|
|
finish = Time.now + timeout
|
|
t = Thread.new do
|
|
while Time.now < finish && !yield
|
|
sleep(0.001)
|
|
end
|
|
end
|
|
t.join
|
|
end
|
|
|
|
|