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

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

Issue 141113011: Support directories other than "web" in pub build. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Revise. Created 6 years, 11 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/allows_arbitrary_modes_test.dart
diff --git a/sdk/lib/_internal/pub/test/build/allows_arbitrary_modes_test.dart b/sdk/lib/_internal/pub/test/build/allows_arbitrary_modes_test.dart
index 8a5f6bf7ac7811547fe66b86912fca1eeb9ba55d..5138236b44d870c9544dd253f3630a06c1868231 100644
--- a/sdk/lib/_internal/pub/test/build/allows_arbitrary_modes_test.dart
+++ b/sdk/lib/_internal/pub/test/build/allows_arbitrary_modes_test.dart
@@ -46,12 +46,13 @@ main() {
createLockFile('myapp', pkg: ['barback']);
- schedulePub(args: ["build", "--mode", "depeche"],
- exitCode: 0);
+ schedulePub(args: ["build", "--mode", "depeche"]);
d.dir(appPath, [
d.dir('build', [
- d.file('foo.out', 'depeche')
+ d.dir('web', [
+ d.file('foo.out', 'depeche')
+ ])
])
]).validate();
});

Powered by Google App Engine
This is Rietveld 408576698