OLD | NEW |
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 import "dart:html" show querySelector; | 5 import "dart:html" show querySelector; |
6 | 6 |
7 import 'lib/suites/json.dart' show jsonSuite; | 7 import 'lib/suites/json.dart' show jsonSuite; |
8 import 'lib/html_view.dart' show runSuiteWithView; | 8 import 'lib/dashboard.dart' show showDashboard; |
9 | 9 |
10 main() async => runSuiteWithView(jsonSuite, querySelector("#report")); | 10 main() => showDashboard(jsonSuite, querySelector("#dashboard")); |
OLD | NEW |