| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS d.file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS d.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 import '../descriptor.dart' as d; | 5 import '../descriptor.dart' as d; |
| 6 import '../test_pub.dart'; | 6 import '../test_pub.dart'; |
| 7 import '../serve/utils.dart'; | 7 import '../serve/utils.dart'; |
| 8 | 8 |
| 9 /// The code for a transformer that renames ".js" files to ".out". | 9 /// The code for a transformer that renames ".js" files to ".out". |
| 10 const JS_REWRITE_TRANSFORMER = """ | 10 const JS_REWRITE_TRANSFORMER = """ |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 "transformers": ["\$dart2js", "myapp/src/transformer"] | 35 "transformers": ["\$dart2js", "myapp/src/transformer"] |
| 36 }), | 36 }), |
| 37 d.dir("lib", [d.dir("src", [ | 37 d.dir("lib", [d.dir("src", [ |
| 38 d.file("transformer.dart", JS_REWRITE_TRANSFORMER) | 38 d.file("transformer.dart", JS_REWRITE_TRANSFORMER) |
| 39 ])]), | 39 ])]), |
| 40 d.dir("web", [d.file("main.dart", "void main() {}")]) | 40 d.dir("web", [d.file("main.dart", "void main() {}")]) |
| 41 ]).create(); | 41 ]).create(); |
| 42 | 42 |
| 43 createLockFile('myapp', pkg: ['barback']); | 43 createLockFile('myapp', pkg: ['barback']); |
| 44 | 44 |
| 45 pubServe(); | 45 pubServe(shouldGetFirst: true); |
| 46 requestShouldSucceed("main.dart.out", isUnminifiedDart2JSOutput); | 46 requestShouldSucceed("main.dart.out", isUnminifiedDart2JSOutput); |
| 47 endPubServe(); | 47 endPubServe(); |
| 48 }); | 48 }); |
| 49 }); | 49 }); |
| 50 } | 50 } |
| OLD | NEW |