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

Unified Diff: pkg/polymer/test/run_all.dart

Issue 23452010: Add a polymer validator: a linter/analysis that will replace the old (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 3 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: pkg/polymer/test/run_all.dart
diff --git a/pkg/polymer/test/run_all.dart b/pkg/polymer/test/run_all.dart
index 925bb404ad5e47ae5583985742447b7543d2af05..23c52e7e1c2378521cc8f09dbf047a4518069c8f 100644
--- a/pkg/polymer/test/run_all.dart
+++ b/pkg/polymer/test/run_all.dart
@@ -13,14 +13,15 @@ import 'package:unittest/compact_vm_config.dart';
import 'package:unittest/unittest.dart';
import 'package:polymer/testing/content_shell_test.dart';
-import 'css_test.dart' as css_test;
import 'compiler_test.dart' as compiler_test;
-import 'utils_test.dart' as utils_test;
+import 'css_test.dart' as css_test;
import 'transform/all_phases_test.dart' as all_phases_test;
import 'transform/code_extractor_test.dart' as code_extractor_test;
import 'transform/import_inliner_test.dart' as import_inliner_test;
import 'transform/polyfill_injector_test.dart' as polyfill_injector_test;
import 'transform/script_compactor_test.dart' as script_compactor_test;
+import 'utils_test.dart' as utils_test;
+import 'validator_test.dart' as validator_test;
main() {
var args = new Options().arguments;
@@ -34,6 +35,7 @@ main() {
}
}
+ addGroup('validator_test.dart', validator_test.main);
addGroup('compiler_test.dart', compiler_test.main);
addGroup('css_test.dart', css_test.main);
addGroup('utils_test.dart', utils_test.main);

Powered by Google App Engine
This is Rietveld 408576698