| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 /** @fileoverview Runs the Media Router Polymer elements tests. */ | 5 /** @fileoverview Runs the Media Router Polymer elements tests. */ |
| 6 | 6 |
| 7 /** @const {string} Path to source root. */ | 7 /** @const {string} Path to source root. */ |
| 8 var ROOT_PATH = '../../../../../'; | 8 var ROOT_PATH = '../../../../../'; |
| 9 | 9 |
| 10 // Polymer BrowserTest fixture. | 10 // Polymer BrowserTest fixture. |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 'issue_banner_tests.js', | 41 'issue_banner_tests.js', |
| 42 'media_router_container_cast_mode_list_tests.js', | 42 'media_router_container_cast_mode_list_tests.js', |
| 43 'media_router_container_filter_tests.js', | 43 'media_router_container_filter_tests.js', |
| 44 'media_router_container_first_run_flow_tests.js', | 44 'media_router_container_first_run_flow_tests.js', |
| 45 'media_router_container_route_tests.js', | 45 'media_router_container_route_tests.js', |
| 46 'media_router_container_search_tests.js', | 46 'media_router_container_search_tests.js', |
| 47 'media_router_container_sink_list_tests.js', | 47 'media_router_container_sink_list_tests.js', |
| 48 'media_router_container_test_base.js', | 48 'media_router_container_test_base.js', |
| 49 'media_router_header_tests.js', | 49 'media_router_header_tests.js', |
| 50 'media_router_search_highlighter_tests.js', | 50 'media_router_search_highlighter_tests.js', |
| 51 'route_controls_tests.js', |
| 51 'route_details_tests.js', | 52 'route_details_tests.js', |
| 52 ]), | 53 ]), |
| 53 | 54 |
| 54 /** @override */ | 55 /** @override */ |
| 55 setUp: function() { | 56 setUp: function() { |
| 56 PolymerTest.prototype.setUp.call(this); | 57 PolymerTest.prototype.setUp.call(this); |
| 57 | 58 |
| 58 // Enable when failure is resolved. | 59 // Enable when failure is resolved. |
| 59 // AX_ARIA_02: http://crbug.com/591547 | 60 // AX_ARIA_02: http://crbug.com/591547 |
| 60 this.accessibilityAuditConfig.ignoreSelectors( | 61 this.accessibilityAuditConfig.ignoreSelectors( |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 mocha.run(); | 128 mocha.run(); |
| 128 }); | 129 }); |
| 129 | 130 |
| 130 TEST_F('MediaRouterElementsBrowserTest', | 131 TEST_F('MediaRouterElementsBrowserTest', |
| 131 'MediaRouterSearchHighlighter', | 132 'MediaRouterSearchHighlighter', |
| 132 function() { | 133 function() { |
| 133 media_router_search_highlighter.registerTests(); | 134 media_router_search_highlighter.registerTests(); |
| 134 mocha.run(); | 135 mocha.run(); |
| 135 }); | 136 }); |
| 136 | 137 |
| 138 TEST_F( |
| 139 'MediaRouterElementsBrowserTest', 'MediaRouterRouteControls', function() { |
| 140 route_controls.registerTests(); |
| 141 mocha.run(); |
| 142 }); |
| 143 |
| 137 TEST_F('MediaRouterElementsBrowserTest', 'MediaRouterRouteDetails', function() { | 144 TEST_F('MediaRouterElementsBrowserTest', 'MediaRouterRouteDetails', function() { |
| 138 route_details.registerTests(); | 145 route_details.registerTests(); |
| 139 mocha.run(); | 146 mocha.run(); |
| 140 }); | 147 }); |
| OLD | NEW |