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

Unified Diff: sdk/lib/_internal/pub/test/dart2js/supports_valid_options_test.dart

Issue 704053002: Fix dart2js tests in pub. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 1 month 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/dart2js/supports_valid_options_test.dart
diff --git a/sdk/lib/_internal/pub/test/dart2js/supports_valid_options_test.dart b/sdk/lib/_internal/pub/test/dart2js/supports_valid_options_test.dart
index 4bf175a7bf2c70ead67e07370d83dfd29bebe2ae..81212b0537fe14bd9a7dc8227e85322e0ea88d8d 100644
--- a/sdk/lib/_internal/pub/test/dart2js/supports_valid_options_test.dart
+++ b/sdk/lib/_internal/pub/test/dart2js/supports_valid_options_test.dart
@@ -22,14 +22,16 @@ main() {
"minify": true,
"verbose": true,
"environment": {"name": "value"},
- "analyzeAll": true,
"suppressWarnings": true,
"suppressHints": true,
"suppressPackageWarnings": false,
"terse": true
}
}]
- })
+ }),
+ d.dir("web", [
+ d.file("main.dart", "void main() => print('Hello!');")
+ ])
]).create();
// None of these options should be rejected, either by pub or by dart2js.

Powered by Google App Engine
This is Rietveld 408576698