| Index: test/transformer/runs_a_third_party_transform_on_the_application_package_test.dart
|
| diff --git a/test/transformer/runs_a_third_party_transform_on_the_application_package_test.dart b/test/transformer/runs_a_third_party_transform_on_the_application_package_test.dart
|
| index cc0ecf512ada154b400e348e3e801054f515930f..6d3c68f0fb75406d7dd693cb1df656b908673fca 100644
|
| --- a/test/transformer/runs_a_third_party_transform_on_the_application_package_test.dart
|
| +++ b/test/transformer/runs_a_third_party_transform_on_the_application_package_test.dart
|
| @@ -9,31 +9,29 @@ import '../test_pub.dart';
|
| import '../serve/utils.dart';
|
|
|
| main() {
|
| - withBarbackVersions("any", () {
|
| - integration("runs a third-party transform on the application package", () {
|
| - d.dir("foo", [
|
| - d.libPubspec("foo", '1.0.0'),
|
| - d.dir("lib", [
|
| - d.file("foo.dart", REWRITE_TRANSFORMER)
|
| - ])
|
| - ]).create();
|
| + integration("runs a third-party transform on the application package", () {
|
| + d.dir("foo", [
|
| + d.libPubspec("foo", '1.0.0'),
|
| + d.dir("lib", [
|
| + d.file("foo.dart", REWRITE_TRANSFORMER)
|
| + ])
|
| + ]).create();
|
|
|
| - d.dir(appPath, [
|
| - d.pubspec({
|
| - "name": "myapp",
|
| - "dependencies": {"foo": {"path": "../foo"}},
|
| - "transformers": ["foo"]
|
| - }),
|
| - d.dir("web", [
|
| - d.file("foo.txt", "foo")
|
| - ])
|
| - ]).create();
|
| + d.dir(appPath, [
|
| + d.pubspec({
|
| + "name": "myapp",
|
| + "dependencies": {"foo": {"path": "../foo"}},
|
| + "transformers": ["foo"]
|
| + }),
|
| + d.dir("web", [
|
| + d.file("foo.txt", "foo")
|
| + ])
|
| + ]).create();
|
|
|
| - createLockFile('myapp', sandbox: ['foo'], pkg: ['barback']);
|
| + createLockFile('myapp', sandbox: ['foo'], pkg: ['barback']);
|
|
|
| - pubServe();
|
| - requestShouldSucceed("foo.out", "foo.out");
|
| - endPubServe();
|
| - });
|
| + pubServe();
|
| + requestShouldSucceed("foo.out", "foo.out");
|
| + endPubServe();
|
| });
|
| }
|
|
|