| 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 library pub_tests; | 5 library pub_tests; |
| 6 | 6 |
| 7 import '../descriptor.dart' as d; | 7 import '../descriptor.dart' as d; |
| 8 import '../test_pub.dart'; | 8 import '../test_pub.dart'; |
| 9 import '../serve/utils.dart'; | 9 import '../serve/utils.dart'; |
| 10 | 10 |
| 11 // Regression test for issue 21726. | 11 // Regression test for issue 21726. |
| 12 main() { | 12 main() { |
| 13 initConfig(); | 13 initConfig(); |
| 14 withBarbackVersions("any", () { | 14 withBarbackVersions("any", () { |
| 15 integration("runs a dart2js transformer before a local transformer", () { | 15 integration("runs a dart2js transformer before a local transformer", () { |
| 16 d.dir(appPath, [ | 16 d.dir(appPath, [d.pubspec({ |
| 17 d.pubspec({ | |
| 18 "name": "myapp", | 17 "name": "myapp", |
| 19 "transformers": [ | 18 "transformers": [r"$dart2js", "myapp/src/transformer"] |
| 20 r"$dart2js", | |
| 21 "myapp/src/transformer" | |
| 22 ] | |
| 23 }), | 19 }), |
| 24 d.dir("lib", [d.dir("src", [ | 20 d.dir("lib", [d.dir("src", [d.file("transformer.dart", REWRITE_TRANS
FORMER)])]), |
| 25 d.file("transformer.dart", REWRITE_TRANSFORMER) | 21 d.dir("web", [d.file("foo.txt", "foo")])]).create(); |
| 26 ])]), | |
| 27 d.dir("web", [ | |
| 28 d.file("foo.txt", "foo") | |
| 29 ]) | |
| 30 ]).create(); | |
| 31 | 22 |
| 32 createLockFile('myapp', pkg: ['barback']); | 23 createLockFile('myapp', pkg: ['barback']); |
| 33 | 24 |
| 34 pubServe(); | 25 pubServe(); |
| 35 requestShouldSucceed("foo.out", "foo.out"); | 26 requestShouldSucceed("foo.out", "foo.out"); |
| 36 endPubServe(); | 27 endPubServe(); |
| 37 }); | 28 }); |
| 38 }); | 29 }); |
| 39 } | 30 } |
| OLD | NEW |