Commit eabadad6 authored by Yegor's avatar Yegor Committed by GitHub

Add more logging to the gallery transitions test (#6363)

parent 995fcdc9
...@@ -115,6 +115,7 @@ void main() { ...@@ -115,6 +115,7 @@ void main() {
// Scroll each demo menu item into view, launch the demo and // Scroll each demo menu item into view, launch the demo and
// return to the demo menu 2x. // return to the demo menu 2x.
for(String demoTitle in demoTitles) { for(String demoTitle in demoTitles) {
print('Testing "$demoTitle" demo');
SerializableFinder menuItem = find.text(demoTitle); SerializableFinder menuItem = find.text(demoTitle);
await driver.scrollIntoView(menuItem); await driver.scrollIntoView(menuItem);
await new Future<Null>.delayed(new Duration(milliseconds: 500)); await new Future<Null>.delayed(new Duration(milliseconds: 500));
...@@ -125,6 +126,7 @@ void main() { ...@@ -125,6 +126,7 @@ void main() {
await driver.tap(find.byTooltip('Back')); await driver.tap(find.byTooltip('Back'));
await new Future<Null>.delayed(new Duration(milliseconds: 1000)); await new Future<Null>.delayed(new Duration(milliseconds: 1000));
} }
print('Success');
} }
}, },
streams: const <TimelineStream>[ streams: const <TimelineStream>[
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment