| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 // Dart2js can take a long time to compile dart code, so we increase the timeout |
| 6 // to cope with that. |
| 7 @Timeout.factor(3) |
| 8 |
| 5 import 'package:scheduled_test/scheduled_test.dart'; | 9 import 'package:scheduled_test/scheduled_test.dart'; |
| 6 | 10 |
| 7 import '../descriptor.dart' as d; | 11 import '../descriptor.dart' as d; |
| 8 import '../test_pub.dart'; | 12 import '../test_pub.dart'; |
| 9 import 'utils.dart'; | 13 import 'utils.dart'; |
| 10 | 14 |
| 11 main() { | 15 main() { |
| 12 // This is a regression test for http://dartbug.com/16617. | 16 // This is a regression test for http://dartbug.com/16617. |
| 13 | 17 |
| 14 initConfig(); | |
| 15 | |
| 16 integration("compiles dart.js and interop.js next to entrypoints when " | 18 integration("compiles dart.js and interop.js next to entrypoints when " |
| 17 "browser is a dev dependency", () { | 19 "browser is a dev dependency", () { |
| 18 // Dart2js can take a long time to compile dart code, so we increase the | |
| 19 // timeout to cope with that. | |
| 20 currentSchedule.timeout *= 3; | |
| 21 | |
| 22 serveBrowserPackage(); | 20 serveBrowserPackage(); |
| 23 | 21 |
| 24 d.dir(appPath, [ | 22 d.dir(appPath, [ |
| 25 d.pubspec({ | 23 d.pubspec({ |
| 26 "name": "myapp", | 24 "name": "myapp", |
| 27 "dev_dependencies": { | 25 "dev_dependencies": { |
| 28 "browser": "any" | 26 "browser": "any" |
| 29 } | 27 } |
| 30 }), | 28 }), |
| 31 d.dir('web', [ | 29 d.dir('web', [ |
| (...skipping 11 matching lines...) Expand all Loading... |
| 43 d.dir('web', [ | 41 d.dir('web', [ |
| 44 d.dir('packages', [d.dir('browser', [ | 42 d.dir('packages', [d.dir('browser', [ |
| 45 d.file('dart.js', 'contents of dart.js'), | 43 d.file('dart.js', 'contents of dart.js'), |
| 46 d.file('interop.js', 'contents of interop.js') | 44 d.file('interop.js', 'contents of interop.js') |
| 47 ])]) | 45 ])]) |
| 48 ]) | 46 ]) |
| 49 ]) | 47 ]) |
| 50 ]).validate(); | 48 ]).validate(); |
| 51 }); | 49 }); |
| 52 } | 50 } |
| OLD | NEW |