| Index: tools/test.dart
|
| diff --git a/tools/test.dart b/tools/test.dart
|
| index 69844e60d1f5d8332f1f27b2931ce7e3a3293d7c..c4b3c422090bb55f2e21536b5fcfc85c2b3eafa0 100755
|
| --- a/tools/test.dart
|
| +++ b/tools/test.dart
|
| @@ -26,6 +26,7 @@
|
| #import("../frog/tests/await/test_config.dart");
|
| #import("../utils/tests/css/test_config.dart");
|
| #import("../utils/tests/dartdoc/test_config.dart");
|
| +#import("../utils/tests/import_mapper/test_config.dart");
|
| #import("../utils/tests/peg/test_config.dart");
|
|
|
| main() {
|
| @@ -99,6 +100,9 @@ main() {
|
| if (selectors.containsKey('dartdoc')) {
|
| queue.addTestSuite(new DartdocTestSuite(conf));
|
| }
|
| + if (selectors.containsKey('import_mapper')) {
|
| + queue.addTestSuite(new ImportMapperTestSuite(conf));
|
| + }
|
| if (selectors.containsKey('peg')) {
|
| queue.addTestSuite(new PegTestSuite(conf));
|
| }
|
|
|