Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
5d8ea59d
Unverified
Commit
5d8ea59d
authored
Jun 27, 2018
by
Danny Tuppeny
Committed by
GitHub
Jun 27, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add process output for flutter_tester test and unskip (#18868)
parent
e616c6ce
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
flutter_tester_test.dart
...s/flutter_tools/test/integration/flutter_tester_test.dart
+7
-2
No files found.
packages/flutter_tools/test/integration/flutter_tester_test.dart
View file @
5d8ea59d
...
...
@@ -94,15 +94,20 @@ class MyApp extends StatelessWidget {
}
'''
);
// Capture process output so that if the process quits we can print the
// stdout/stderr in the error.
final
StringBuffer
logs
=
new
StringBuffer
();
device
.
getLogReader
().
logLines
.
listen
(
logs
.
write
);
final
LaunchResult
result
=
await
start
(
mainPath
);
expect
(
result
.
started
,
isTrue
);
expect
(
result
.
observatoryUri
,
isNotNull
);
await
new
Future
<
void
>.
delayed
(
const
Duration
(
seconds:
3
));
expect
(
device
.
isRunning
,
true
);
expect
(
device
.
isRunning
,
true
,
reason:
'Device did not remain running.
\n\n
$logs
'
.
trim
()
);
expect
(
await
device
.
stopApp
(
null
),
isTrue
);
}
,
skip:
true
);
});
});
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment