| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 import 'package:scheduled_test/scheduled_test.dart'; | |
| 6 | |
| 7 import '../descriptor.dart' as d; | |
| 8 import '../test_pub.dart'; | |
| 9 import 'utils.dart'; | |
| 10 | |
| 11 main() { | |
| 12 // This is a regression test for http://dartbug.com/16617. | |
| 13 | |
| 14 initConfig(); | |
| 15 | |
| 16 integration("compiles dart.js and interop.js next to entrypoints when " | |
| 17 "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(); | |
| 23 | |
| 24 d.dir(appPath, [ | |
| 25 d.pubspec({ | |
| 26 "name": "myapp", | |
| 27 "dev_dependencies": { | |
| 28 "browser": "any" | |
| 29 } | |
| 30 }), | |
| 31 d.dir('web', [ | |
| 32 d.file('file.dart', 'void main() => print("hello");') | |
| 33 ]) | |
| 34 ]).create(); | |
| 35 | |
| 36 pubGet(); | |
| 37 | |
| 38 schedulePub(args: ["build", "--all"], | |
| 39 output: new RegExp(r'Built 3 files to "build".')); | |
| 40 | |
| 41 d.dir(appPath, [ | |
| 42 d.dir('build', [ | |
| 43 d.dir('web', [ | |
| 44 d.dir('packages', [d.dir('browser', [ | |
| 45 d.file('dart.js', 'contents of dart.js'), | |
| 46 d.file('interop.js', 'contents of interop.js') | |
| 47 ])]) | |
| 48 ]) | |
| 49 ]) | |
| 50 ]).validate(); | |
| 51 }); | |
| 52 } | |
| OLD | NEW |