// Copyright 2014 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'dart:async'; import 'dart:io'; import '../framework/adb.dart'; import '../framework/framework.dart'; import '../framework/utils.dart'; Future runEndToEndTests() async { final Device device = await devices.workingDevice; await device.unlock(); final String deviceId = device.deviceId; final Directory testDirectory = dir('${flutterDirectory.path}/dev/integration_tests/ui'); await inDirectory(testDirectory, () async { await flutter('packages', options: ['get']); const List entryPoints = [ 'lib/keyboard_resize.dart', 'lib/driver.dart', 'lib/screenshot.dart', 'lib/keyboard_textfield.dart', ]; for (final String entryPoint in entryPoints) { await flutter('drive', options: ['--verbose', '-d', deviceId, entryPoint]); } }); return TaskResult.success({}); }