chore(formatting): ran formatted

This commit is contained in:
Jon Samwell 2018-10-29 13:53:17 +11:00
parent 508f40cc80
commit 5405f20262
2 changed files with 3 additions and 6 deletions

View File

@ -1,10 +1,6 @@
import 'package:flutter_gherkin/flutter_gherkin.dart';
enum Colour {
red,
green,
blue
}
enum Colour { red, green, blue }
class ColourParameter extends CustomParameter<Colour> {
ColourParameter()

View File

@ -41,7 +41,8 @@ class FlutterAppRunnerHook extends Hook {
Future<void> _runApp(FlutterTestConfiguration config) async {
_flutterAppProcess = new FlutterRunProcessHandler();
_flutterAppProcess.setApplicationTargetFile(config.targetAppPath);
stdout.writeln("Starting Flutter app under test '${config.targetAppPath}', this might take a few moments");
stdout.writeln(
"Starting Flutter app under test '${config.targetAppPath}', this might take a few moments");
await _flutterAppProcess.run();
final observatoryUri =
await _flutterAppProcess.waitForObservatoryDebuggerUri();