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

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

Issue 26933003: Make pub build use barback. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Reword doc comment. Created 7 years, 2 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
Index: sdk/lib/_internal/pub/test/build/copies_browser_js_next_to_entrypoints_test.dart
diff --git a/sdk/lib/_internal/pub/test/build/copies_browser_js_next_to_entrypoints_test.dart b/sdk/lib/_internal/pub/test/build/copies_browser_js_next_to_entrypoints_test.dart
index 9b6820c4d76ff1da64ae6678b5e06ca318391d00..98ed288eb7603eff8bb973353d504fea24dfd886 100644
--- a/sdk/lib/_internal/pub/test/build/copies_browser_js_next_to_entrypoints_test.dart
+++ b/sdk/lib/_internal/pub/test/build/copies_browser_js_next_to_entrypoints_test.dart
@@ -62,24 +62,12 @@ main() {
pubGet();
schedulePub(args: ["build"],
- output: '''
-Finding entrypoints...
-Copying web| => build|
-Compiling web|file.dart => build|file.dart.js
-Compiling web|file.dart => build|file.dart
-Copying package:browser/dart.js => build|packages|browser|dart.js
-Copying package:browser/interop.js => build|packages|browser|interop.js
-Compiling web|subdir|subfile.dart => build|subdir|subfile.dart.js
-Compiling web|subdir|subfile.dart => build|subdir|subfile.dart
-Copying package:browser/dart.js => build|subdir|packages|browser|dart.js
-Copying package:browser/interop.js => build|subdir|packages|browser|interop.js
-'''.replaceAll('|', path.separator),
+ output: new RegExp(r"Built 4 files!"),
exitCode: 0);
d.dir(appPath, [
d.dir('build', [
d.matcherFile('file.dart.js', isNot(isEmpty)),
- d.matcherFile('file.dart', isNot(isEmpty)),
d.dir('packages', [d.dir('browser', [
d.file('dart.js', 'contents of dart.js'),
d.file('interop.js', 'contents of interop.js')
@@ -89,8 +77,7 @@ Copying package:browser/interop.js => build|subdir|packages|browser|interop.js
d.file('dart.js', 'contents of dart.js'),
d.file('interop.js', 'contents of interop.js')
])]),
- d.matcherFile('subfile.dart.js', isNot(isEmpty)),
- d.matcherFile('subfile.dart', isNot(isEmpty))
+ d.matcherFile('subfile.dart.js', isNot(isEmpty))
])
])
]).validate();

Powered by Google App Engine
This is Rietveld 408576698