Skip to content
Snippets Groups Projects
Commit bcf9539c authored by nweiz@google.com's avatar nweiz@google.com Committed by Natalie Weizenbaum
Browse files

Increase the timeout for a failing pub test.

TBR
R=rnystrom@google.com

Review URL: https://codereview.chromium.org//149063005

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@32096 260f80e4-7a28-3924-810f-c04153c831b5
parent 40985a51
No related branches found
No related tags found
No related merge requests found
......@@ -106,7 +106,7 @@ ScheduledProcess startPubServe([Iterable<String> args]) {
// Dart2js can take a long time to compile dart code, so we increase the
// timeout to cope with that.
currentSchedule.timeout = new Duration(seconds: 15);
currentSchedule.timeout *= 1.5;
return startPub(args: pubArgs);
}
......
......@@ -13,6 +13,10 @@ import '../../serve/utils.dart';
main() {
initConfig();
integration("converts a Dart isolate entrypoint in web to JS", () {
// Increase the timeout because dart2js takes a lot longer than usual to
// compile isolate entrypoints.
currentSchedule.timeout *= 2;
d.dir(appPath, [
d.appPubspec(),
d.dir("web", [
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment