Commit c4f5f42a authored by a-deeb's avatar a-deeb Committed by Michael Goderbauer

updated tearDownAll function (#28808)

parent 683238e8
...@@ -13,7 +13,7 @@ void main() { ...@@ -13,7 +13,7 @@ void main() {
}); });
tearDownAll(() async { tearDownAll(() async {
driver?.close(); await driver?.close();
}); });
test('check that we are painting in debugPaintSize mode', () async { test('check that we are painting in debugPaintSize mode', () async {
......
...@@ -13,7 +13,7 @@ void main() { ...@@ -13,7 +13,7 @@ void main() {
}); });
tearDownAll(() async { tearDownAll(() async {
driver?.close(); await driver?.close();
}); });
test('check that we are in normal mode', () async { test('check that we are in normal mode', () async {
......
...@@ -13,7 +13,7 @@ void main() { ...@@ -13,7 +13,7 @@ void main() {
}); });
tearDownAll(() async { tearDownAll(() async {
driver?.close(); await driver?.close();
}); });
test('check that we are showing the performance overlay', () async { test('check that we are showing the performance overlay', () async {
......
...@@ -18,7 +18,7 @@ void main() { ...@@ -18,7 +18,7 @@ void main() {
}); });
tearDownAll(() async { tearDownAll(() async {
driver?.close(); await driver?.close();
}); });
test('Ensure keyboard dismissal resizes the view to original size', () async { test('Ensure keyboard dismissal resizes the view to original size', () async {
......
...@@ -18,7 +18,7 @@ void main() { ...@@ -18,7 +18,7 @@ void main() {
}); });
tearDownAll(() async { tearDownAll(() async {
driver?.close(); await driver?.close();
}); });
test('Textfield scrolls back into view after covered by keyboard', () async { test('Textfield scrolls back into view after covered by keyboard', () async {
......
...@@ -15,7 +15,7 @@ void main() { ...@@ -15,7 +15,7 @@ void main() {
}); });
tearDownAll(() async { tearDownAll(() async {
driver?.close(); await driver?.close();
}); });
test('sanity check flutter drive --route', () async { test('sanity check flutter drive --route', () async {
......
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