17 lines
556 B
Dart
17 lines
556 B
Dart
|
|
// test_driver/integration_test.dart
|
||
|
|
//
|
||
|
|
// Driver entry point for running the M1 integration_test gates on a real device
|
||
|
|
// (Windows tablet) in profile mode, e.g.:
|
||
|
|
//
|
||
|
|
// flutter drive --profile \
|
||
|
|
// --driver=test_driver/integration_test.dart \
|
||
|
|
// --target=integration_test/perf_scroll_bench.dart
|
||
|
|
//
|
||
|
|
// flutter drive \
|
||
|
|
// --driver=test_driver/integration_test.dart \
|
||
|
|
// --target=integration_test/coordinate_assertion_test.dart
|
||
|
|
|
||
|
|
import 'package:integration_test/integration_test_driver.dart';
|
||
|
|
|
||
|
|
Future<void> main() => integrationDriver();
|