Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(710)

Unified Diff: sdk/lib/_internal/pub/test/serve/does_not_watch_compiled_js_files_test.dart

Issue 159003004: Ignore files generated by the Editor. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sdk/lib/_internal/pub/test/build/ignores_existing_compiled_js_files_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/pub/test/serve/does_not_watch_compiled_js_files_test.dart
diff --git a/sdk/lib/_internal/pub/test/serve/does_not_watch_compiled_js_files_test.dart b/sdk/lib/_internal/pub/test/serve/does_not_watch_compiled_js_files_test.dart
index 74598695d1dc202092521488afbdd2c0f881fea5..4d620f639f47418bf239183fb5a0973ac2e2be7c 100644
--- a/sdk/lib/_internal/pub/test/serve/does_not_watch_compiled_js_files_test.dart
+++ b/sdk/lib/_internal/pub/test/serve/does_not_watch_compiled_js_files_test.dart
@@ -26,12 +26,16 @@ main() {
d.dir("web", [
d.file('file.dart', 'void main() => print("hello");'),
d.file("other.dart.js", "should be ignored"),
+ d.file("other.dart.js.map", "should be ignored"),
+ d.file("other.dart.precompiled.js", "should be ignored")
])
]).create();
waitForBuildSuccess();
requestShouldSucceed("file.dart", 'void main() => print("hello");');
requestShould404("other.dart.js");
+ requestShould404("other.dart.js.map");
+ requestShould404("other.dart.precompiled.js");
endPubServe();
});
}
« no previous file with comments | « sdk/lib/_internal/pub/test/build/ignores_existing_compiled_js_files_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698