mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

* Add start-up test for flutter_view sample * add reportMetrics flag to startup test * rewording in manifest.yaml
15 lines
492 B
Dart
15 lines
492 B
Dart
// Copyright 2017 The Chromium 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 'package:flutter_devicelab/tasks/perf_tests.dart';
|
|
import 'package:flutter_devicelab/framework/adb.dart';
|
|
import 'package:flutter_devicelab/framework/framework.dart';
|
|
|
|
Future<Null> main() async {
|
|
deviceOperatingSystem = DeviceOperatingSystem.ios;
|
|
await task(createFlutterViewStartupTest());
|
|
}
|