@@ -8,14 +8,18 @@ def async(desc, *args, &block)
8
8
end
9
9
10
10
module AsyncHelpers
11
- def run_async ( &block )
12
- :: RSpec . current_example . continue_async ( block )
11
+ def async ( &block )
12
+ @example . continue_async ( block )
13
13
end
14
14
15
- def set_timeout ( duration , &block )
16
- `setTimeout(block, duration)`
15
+ alias run_async async
16
+
17
+ def delay ( duration , &block )
18
+ `setTimeout(block, duration * 1000)`
17
19
self
18
20
end
21
+
22
+ alias set_timeout delay
19
23
end
20
24
21
25
class AsyncRunner
@@ -70,14 +74,18 @@ def self.examples
70
74
@examples ||= [ ]
71
75
end
72
76
77
+ include AsyncHelpers
78
+
73
79
def run ( example_group_instance , reporter , &after_run_block )
74
80
@example_group_instance = example_group_instance
75
- @reporter = reporter
76
- @after_run_block = after_run_block
81
+ @reporter = reporter
82
+ @after_run_block = after_run_block
83
+ @finished = false
77
84
78
85
should_wait = true
79
86
80
87
::RSpec . current_example = self
88
+ example_group_instance . instance_variable_set :@example , self
81
89
82
90
start ( reporter )
83
91
@@ -89,10 +97,21 @@ def run(example_group_instance, reporter, &after_run_block)
89
97
should_wait = false
90
98
end
91
99
92
- async_example_finished unless should_wait
100
+ if should_wait
101
+ delay options [ :timeout ] || 10 do
102
+ next if finished?
103
+
104
+ set_exception RuntimeError . new ( "timeout" )
105
+ async_example_finished
106
+ end
107
+ else
108
+ async_example_finished
109
+ end
93
110
end
94
111
95
112
def continue_async ( block )
113
+ return if finished?
114
+
96
115
begin
97
116
block . call
98
117
rescue Exception => e
@@ -102,7 +121,13 @@ def continue_async(block)
102
121
async_example_finished
103
122
end
104
123
124
+ def finished?
125
+ @finished
126
+ end
127
+
105
128
def async_example_finished
129
+ @finished = true
130
+
106
131
begin
107
132
run_after_each
108
133
rescue Exception => e
0 commit comments