Index: test/run/runs_transformer_in_entrypoint_test.dart |
diff --git a/test/run/runs_transformer_in_entrypoint_test.dart b/test/run/runs_transformer_in_entrypoint_test.dart |
index 807d815239f90c243086d7ae778e7c0a5b3a20db..ca53a2a09dd514b0ec61ff5c0535fba917f77791 100644 |
--- a/test/run/runs_transformer_in_entrypoint_test.dart |
+++ b/test/run/runs_transformer_in_entrypoint_test.dart |
@@ -14,27 +14,25 @@ main() { |
"""; |
main() { |
- withBarbackVersions("any", () { |
- integration('runs transformers in the entrypoint package', () { |
- d.dir(appPath, [ |
- d.pubspec({ |
- "name": "myapp", |
- "transformers": ["myapp/src/transformer"] |
- }), |
- d.dir("lib", [d.dir("src", [ |
- d.file("transformer.dart", dartTransformer("transformed")) |
- ])]), |
- d.dir("bin", [ |
- d.file("hi.dart", SCRIPT) |
- ]) |
- ]).create(); |
+ integration('runs transformers in the entrypoint package', () { |
+ d.dir(appPath, [ |
+ d.pubspec({ |
+ "name": "myapp", |
+ "transformers": ["myapp/src/transformer"] |
+ }), |
+ d.dir("lib", [d.dir("src", [ |
+ d.file("transformer.dart", dartTransformer("transformed")) |
+ ])]), |
+ d.dir("bin", [ |
+ d.file("hi.dart", SCRIPT) |
+ ]) |
+ ]).create(); |
- createLockFile('myapp', pkg: ['barback']); |
+ createLockFile('myapp', pkg: ['barback']); |
- var pub = pubRun(args: ["bin/hi"]); |
+ var pub = pubRun(args: ["bin/hi"]); |
- pub.stdout.expect("(hi, transformed)"); |
- pub.shouldExit(); |
- }); |
+ pub.stdout.expect("(hi, transformed)"); |
+ pub.shouldExit(); |
}); |
} |