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

Unified Diff: test/run_all.dart

Issue 22825012: Introduce transformers for: (Closed) Base URL: git@github.com:dart-lang/web-ui.git@master
Patch Set: Created 7 years, 4 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: test/run_all.dart
diff --git a/test/run_all.dart b/test/run_all.dart
index 8fb1f813d118b932e257ad89a4c5a13b7bad9b38..9af4730c443210663916f7bd0f5a1344ab9d6c35 100644
--- a/test/run_all.dart
+++ b/test/run_all.dart
@@ -17,6 +17,9 @@ import 'css_test.dart' as css_test;
import 'compiler_test.dart' as compiler_test;
import 'paths_test.dart' as paths_test;
import 'utils_test.dart' as utils_test;
+import 'transform/code_extractor_test.dart' as code_extractor_test;
+import 'transform/import_inliner_test.dart' as import_inliner_test;
+import 'transform/script_compactor_test.dart' as script_compactor_test;
main() {
var args = new Options().arguments;
@@ -34,6 +37,9 @@ main() {
addGroup('css_test.dart', css_test.main);
addGroup('paths_test.dart', paths_test.main);
addGroup('utils_test.dart', utils_test.main);
+ addGroup('transform/code_extractor_test.dart', code_extractor_test.main);
+ addGroup('transform/import_inliner_test.dart', import_inliner_test.main);
+ addGroup('transform/script_compactor_test.dart', script_compactor_test.main);
// TODO(jmessery): consider restoring these where applicable.
// We'll probably want to use fancy-syntax support.

Powered by Google App Engine
This is Rietveld 408576698