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

* smoke test for web * fix comments and remove logs * addressing reviewer comments * fix analyzer issue * running the test on cirrus * cirrus yaml syntax error * pub get for web_drivers * go to the examples directory before running the flutter app * cirrus is not able to find chromedriver. add a sleep to see if timing is the issue. * run chrome driver in the background * After PR #51084, flutter drive command can build and run a web app. Clean flutter run command from cirrus.yml * enable web
13 lines
333 B
Dart
13 lines
333 B
Dart
// 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:flutter_driver/driver_extension.dart';
|
|
import 'package:hello_world/main.dart' as app;
|
|
|
|
void main() {
|
|
enableFlutterDriverExtension();
|
|
|
|
app.main();
|
|
}
|