Index: test/serve/native_watch_replaced_file_test.dart |
diff --git a/test/serve/native_watch_replaced_file_test.dart b/test/serve/native_watch_replaced_file_test.dart |
index 04aa23a80aa0be0b621e3689881f197356a09107..bf2911f87c01e9b7177af99108a22d18aeb94d77 100644 |
--- a/test/serve/native_watch_replaced_file_test.dart |
+++ b/test/serve/native_watch_replaced_file_test.dart |
@@ -16,42 +16,40 @@ import 'utils.dart'; |
main() { |
// This is a regression test for http://dartbug.com/21402. |
- withBarbackVersions("any", () { |
- integration("picks up files replaced after serving started when using the " |
- "native watcher", () { |
- d.dir(appPath, [ |
- d.pubspec({ |
- "name": "myapp", |
- "transformers": ["myapp/src/transformer"] |
- }), |
- d.dir("lib", [d.dir("src", [ |
- d.file("transformer.dart", REWRITE_TRANSFORMER) |
- ])]), |
- d.dir("web", [ |
- d.file("file.txt", "before"), |
- ]), |
- d.file("other", "after") |
- ]).create(); |
- |
- createLockFile("myapp", pkg: ["barback"]); |
- |
- pubServe(args: ["--no-force-poll"]); |
- waitForBuildSuccess(); |
- requestShouldSucceed("file.out", "before.out"); |
- |
- schedule(() { |
- // Replace file.txt by renaming other on top of it. |
- return new File(p.join(sandboxDir, appPath, "other")) |
- .rename(p.join(sandboxDir, appPath, "web", "file.txt")); |
- }); |
- |
- // Read the transformed file to ensure the change is actually noticed by |
- // pub and not that we just get the new file contents piped through |
- // without pub realizing they've changed. |
- waitForBuildSuccess(); |
- requestShouldSucceed("file.out", "after.out"); |
- |
- endPubServe(); |
- }); |
- }); |
+ integration("picks up files replaced after serving started when using the " |
+ "native watcher", () { |
+ d.dir(appPath, [ |
+ d.pubspec({ |
+ "name": "myapp", |
+ "transformers": ["myapp/src/transformer"] |
+ }), |
+ d.dir("lib", [d.dir("src", [ |
+ d.file("transformer.dart", REWRITE_TRANSFORMER) |
+ ])]), |
+ d.dir("web", [ |
+ d.file("file.txt", "before"), |
+ ]), |
+ d.file("other", "after") |
+ ]).create(); |
+ |
+ createLockFile("myapp", pkg: ["barback"]); |
+ |
+ pubServe(args: ["--no-force-poll"]); |
+ waitForBuildSuccess(); |
+ requestShouldSucceed("file.out", "before.out"); |
+ |
+ schedule(() { |
+ // Replace file.txt by renaming other on top of it. |
+ return new File(p.join(sandboxDir, appPath, "other")) |
+ .rename(p.join(sandboxDir, appPath, "web", "file.txt")); |
+ }); |
+ |
+ // Read the transformed file to ensure the change is actually noticed by |
+ // pub and not that we just get the new file contents piped through |
+ // without pub realizing they've changed. |
+ waitForBuildSuccess(); |
+ requestShouldSucceed("file.out", "after.out"); |
+ |
+ endPubServe(); |
+ }); |
} |