Unverified Commit fdc6f38a authored by Jonah Williams's avatar Jonah Williams Committed by GitHub

increase eventOrExit timeout to 1 minute (#55988)

parent 0889e143
......@@ -57,7 +57,7 @@ Future<void> testReload(Process process, { Future<void> Function() onListening }
event,
process.exitCode,
// Keep the test from running for 15 minutes if it gets stuck.
Future<void>.delayed(const Duration(seconds: 10)).then<void>((void _) {
Future<void>.delayed(const Duration(minutes: 1)).then<void>((void _) {
throw StateError('eventOrExit timed out');
}),
]);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment