platform/test/all.dart
2017-06-12 19:53:08 -04:00

8 lines
No EOL
230 B
Dart

import 'package:test/test.dart';
import 'embed_shelf_test.dart' as embed_shelf;
import 'support_shelf_test.dart' as support_shelf;
main() {
group('embed_shelf', embed_shelf.main);
group('support_shelf', support_shelf.main);
}