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

Unified Diff: sdk/lib/_internal/pub/test/build/dart2js_finds_imports_across_packages_test.dart

Issue 105673003: Output all files generated by dart2js, not just the main one. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years 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/copies_browser_js_next_to_entrypoints_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/build/dart2js_finds_imports_across_packages_test.dart
diff --git a/sdk/lib/_internal/pub/test/build/dart2js_finds_imports_across_packages_test.dart b/sdk/lib/_internal/pub/test/build/dart2js_finds_imports_across_packages_test.dart
index 0778ab15ab8fe600e971e9156f508a44fbffa5c2..fd8a7ac9d8c45fe5e7215a6a01ea51e17983b931 100644
--- a/sdk/lib/_internal/pub/test/build/dart2js_finds_imports_across_packages_test.dart
+++ b/sdk/lib/_internal/pub/test/build/dart2js_finds_imports_across_packages_test.dart
@@ -47,12 +47,14 @@ main() {
]).create();
schedulePub(args: ["build"],
- output: new RegExp(r"Built 1 file!"),
+ output: new RegExp(r"Built 3 files!"),
exitCode: 0);
d.dir(appPath, [
d.dir('build', [
- d.matcherFile('main.dart.js', isNot(isEmpty))
+ d.matcherFile('main.dart.js', isNot(isEmpty)),
+ d.matcherFile('main.dart.precompiled.js', isNot(isEmpty)),
+ d.matcherFile('main.dart.js.map', isNot(isEmpty))
])
]).validate();
});
« no previous file with comments | « sdk/lib/_internal/pub/test/build/copies_browser_js_next_to_entrypoints_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698