1// Copyright (c) 2019 The Flutter Authors. All rights reserved. 2// Use of this source code is governed by a BSD-style license that can be 3// found in the LICENSE file. 4 5import 'dart:async'; 6 7import 'package:flutter_devicelab/framework/utils.dart'; 8import 'package:flutter_devicelab/tasks/run_without_leak.dart'; 9import 'package:flutter_devicelab/framework/framework.dart'; 10import 'package:path/path.dart' as path; 11 12Future<void> main() async { 13 await task(createRunWithoutLeakTest(path.join(flutterDirectory.path, 'examples', 'hello_world'))); 14} 15