From 1f4efd7614af8b4f949c88b53f448205e9427238 Mon Sep 17 00:00:00 2001 From: Mootaz Bahri Date: Fri, 9 Aug 2024 13:15:07 +0200 Subject: [PATCH] Document next step for sauce --- .../flutter/flutter-integration-testing-android.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/mobile-apps/automated-testing/flutter/flutter-integration-testing-android.md b/docs/mobile-apps/automated-testing/flutter/flutter-integration-testing-android.md index e100d49aea..ef05478c81 100644 --- a/docs/mobile-apps/automated-testing/flutter/flutter-integration-testing-android.md +++ b/docs/mobile-apps/automated-testing/flutter/flutter-integration-testing-android.md @@ -70,7 +70,8 @@ Follow this guide to run integration tests for your Flutter app on Android. ``` 5. Create a directory called `integration_test` in the root of your Flutter project. 6. Create a file called `flutter_integration_test.dart` in the `integration_test` directory. -7. Update your testing dart file `flutter_integration_test.dart` to include the ***tearDownAll***, The purpose for this is to make sure we close the connection to the driver after the tests have completed. +7. Update your testing dart file `flutter_integration_test.dart` to include the ***tearDownAll***, + The purpose for this is to make sure we close the connection to the driver after the tests have completed. ```dart import 'package:flutter/material.dart'; import 'package:flutter_test/flutter_test.dart';