File tree Expand file tree Collapse file tree
packages/devtools_app/integration_test/test_infra/run Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -22,12 +22,8 @@ class TestFlutterApp extends IntegrationTestApp {
2222 @override
2323 Future <void > startProcess () async {
2424 runProcess = await Process .start (
25- Platform .isWindows
26- ? 'flutter.bat'
27- : '/Users/elliottbrooks/dev/flutter/bin/dart' ,
25+ Platform .isWindows ? 'flutter.bat' : 'flutter' ,
2826 [
29- '/Users/elliottbrooks/dev/flutter/packages/flutter_tools/bin/flutter_tools.dart' ,
30-
3127 'run' ,
3228 '--machine' ,
3329 '-d' ,
@@ -37,6 +33,22 @@ class TestFlutterApp extends IntegrationTestApp {
3733 ],
3834 workingDirectory: testAppPath,
3935 );
36+
37+ // runProcess = await Process.start(
38+ // Platform.isWindows
39+ // ? 'flutter.bat'
40+ // : '/Users/elliottbrooks/dev/flutter/bin/dart',
41+ // [
42+ // '/Users/elliottbrooks/dev/flutter/packages/flutter_tools/bin/flutter_tools.dart',
43+ // 'run',
44+ // '--machine',
45+ // '-d',
46+ // testAppDevice.argName,
47+ // // Do not serve DevTools from Flutter Tools.
48+ // '--no-devtools',
49+ // ],
50+ // workingDirectory: testAppPath,
51+ // );
4052 }
4153
4254 @override
You can’t perform that action at this time.
0 commit comments