// 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'package:file/file.dart';import'package:flutter_tools/src/base/file_system.dart';import'../src/common.dart';import'test_data/basic_project.dart';import'test_driver.dart';import'test_utils.dart';voidmain(){DirectorytempDir;finalBasicProjectWithUnaryMainproject=BasicProjectWithUnaryMain();FlutterRunTestDriverflutter;setUp(()async{tempDir=createResolvedTempDirectorySync('run_test.');awaitproject.setUpIn(tempDir);flutter=FlutterRunTestDriver(tempDir);});tearDown(()async{awaitflutter.stop();tryToDelete(tempDir);});test('flutter run works on web devices with a unary main function',()async{awaitflutter.run(chrome:true);},skip:'Web CI skipped');}