Skip to content

Commit 4d2489d

Browse files
committed
Extend timeout for e2e tests to 8 minutes
1 parent 0ce8ed7 commit 4d2489d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

webdev/test/e2e_test.dart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5+
@Timeout(const Duration(minutes: 8))
6+
57
import 'dart:io';
68

79
import 'package:path/path.dart' as p;
@@ -51,7 +53,7 @@ void main() {
5153
await d.nothing(ddcFile).validate();
5254
}
5355
}
54-
}, timeout: const Timeout(const Duration(minutes: 5)));
56+
});
5557
}
5658
});
5759
}

0 commit comments

Comments
 (0)