| Index: pkg/barback/test/package_graph/transform/transform_test.dart
|
| diff --git a/pkg/barback/test/package_graph/transform/transform_test.dart b/pkg/barback/test/package_graph/transform/transform_test.dart
|
| index 8cc9085cc274661b5459f920c2d2de7f6a458ff8..dce5e2cd15586ea2cc38cdca8b26b81f232b88ec 100644
|
| --- a/pkg/barback/test/package_graph/transform/transform_test.dart
|
| +++ b/pkg/barback/test/package_graph/transform/transform_test.dart
|
| @@ -368,19 +368,18 @@ main() {
|
| buildShouldSucceed();
|
| });
|
|
|
| - // TODO(nweiz): enable this when issue 17480 is fixed.
|
| - // test("re-runs the transformer when an input starts existing", () {
|
| - // initGraph(["app|foo.txt", "app|bar.txt"], {'app': [
|
| - // [new HasInputTransformer(['app|bar.txt'])]
|
| - // ]});
|
| - //
|
| - // updateSources(['app|foo.txt']);
|
| - // expectAsset('app|foo.txt', 'app|bar.txt: false');
|
| - // buildShouldSucceed();
|
| - //
|
| - // updateSources(['app|bar.txt']);
|
| - // expectAsset('app|foo.txt', 'app|bar.txt: true');
|
| - // buildShouldSucceed();
|
| - // });
|
| + test("re-runs the transformer when an input starts existing", () {
|
| + initGraph(["app|foo.txt", "app|bar.txt"], {'app': [
|
| + [new HasInputTransformer(['app|bar.txt'])]
|
| + ]});
|
| +
|
| + updateSources(['app|foo.txt']);
|
| + expectAsset('app|foo.txt', 'app|bar.txt: false');
|
| + buildShouldSucceed();
|
| +
|
| + updateSources(['app|bar.txt']);
|
| + expectAsset('app|foo.txt', 'app|bar.txt: true');
|
| + buildShouldSucceed();
|
| + });
|
| });
|
| }
|
|
|