before switch to ubuntu commit since apple has issues

This commit is contained in:
2015-08-13 12:54:02 +02:00
parent 6b764fcd39
commit 919474b54c
17 changed files with 81 additions and 41 deletions
+3 -1
View File
@@ -18,9 +18,11 @@ module SpecRouteHelpers
max_wait = 4
time = 0.0
time_step = 0.25
while time < max_wait && ember_route != route_def
current_route = ember_route
while time < max_wait && current_route != route_def
time += time_step
sleep time_step
current_route = ember_route
end
ember_route(omit_should_raise: true).should == route_def
end