| 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);
|
|
|