This commit is contained in:
Erick Zanardo
2020-12-08 19:19:16 -03:00
committed by renancaraujo
parent bde8656510
commit c020383887
2 changed files with 5 additions and 2 deletions

View File

@@ -64,7 +64,9 @@ void main() {
expect(true, wrapper.containsChild(child));
});
test('when child is async loading, adds the child to the component after loading', () async {
test(
'when child is async loading, adds the child to the component after loading',
() async {
final MyAsyncChild child = MyAsyncChild();
final MyComposed wrapper = MyComposed();
await wrapper.addChild(child);