File tree 1 file changed +22
-3
lines changed
1 file changed +22
-3
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,13 @@ storiesOf('Level', module)
71
71
] ,
72
72
}
73
73
return (
74
- < Level level = { level } onContinue = { action ( 'onContinue' ) } onLoadSolution = { action ( 'onLoadSolution' ) } processes = { [ ] } />
74
+ < Level
75
+ level = { level }
76
+ onContinue = { action ( 'onContinue' ) }
77
+ onLoadSolution = { action ( 'onLoadSolution' ) }
78
+ processes = { [ ] }
79
+ testStatus = { null }
80
+ />
75
81
)
76
82
} )
77
83
. add ( 'Level 2' , ( ) => {
@@ -129,6 +135,7 @@ storiesOf('Level', module)
129
135
description : 'Installing dependencies' ,
130
136
} ,
131
137
] }
138
+ testStatus = { null }
132
139
/>
133
140
)
134
141
} )
@@ -201,7 +208,13 @@ storiesOf('Level', module)
201
208
] ,
202
209
}
203
210
return (
204
- < Level level = { level } onContinue = { action ( 'onContinue' ) } onLoadSolution = { action ( 'onLoadSolution' ) } processes = { [ ] } />
211
+ < Level
212
+ level = { level }
213
+ onContinue = { action ( 'onContinue' ) }
214
+ onLoadSolution = { action ( 'onLoadSolution' ) }
215
+ processes = { [ ] }
216
+ testStatus = { null }
217
+ />
205
218
)
206
219
} )
207
220
. add ( 'FakeBook API L2' , ( ) => {
@@ -267,6 +280,12 @@ storiesOf('Level', module)
267
280
] ,
268
281
}
269
282
return (
270
- < Level level = { level } onContinue = { action ( 'onContinue' ) } onLoadSolution = { action ( 'onLoadSolution' ) } processes = { [ ] } />
283
+ < Level
284
+ level = { level }
285
+ onContinue = { action ( 'onContinue' ) }
286
+ onLoadSolution = { action ( 'onLoadSolution' ) }
287
+ processes = { [ ] }
288
+ testStatus = { null }
289
+ />
271
290
)
272
291
} )
You can’t perform that action at this time.
0 commit comments