| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 | 43 |
| 44 TEST_F('MediaRouterElementsBrowserTest', 'MediaRouterElementsTestIssueBanner', | 44 TEST_F('MediaRouterElementsBrowserTest', 'MediaRouterElementsTestIssueBanner', |
| 45 function() { | 45 function() { |
| 46 // Register mocha tests for the issue banner. | 46 // Register mocha tests for the issue banner. |
| 47 issue_banner.registerTests(); | 47 issue_banner.registerTests(); |
| 48 | 48 |
| 49 // Run all registered tests. | 49 // Run all registered tests. |
| 50 mocha.run(); | 50 mocha.run(); |
| 51 }); | 51 }); |
| 52 | 52 |
| 53 // See bugs.chromium.org issue 591227 |
| 53 TEST_F('MediaRouterElementsBrowserTest', | 54 TEST_F('MediaRouterElementsBrowserTest', |
| 54 'MediaRouterElementsTestMediaRouterContainer', | 55 'DISABLED_MediaRouterElementsTestMediaRouterContainer', |
| 55 function() { | 56 function() { |
| 56 // Register mocha tests for the container. | 57 // Register mocha tests for the container. |
| 57 media_router_container.registerTests(); | 58 media_router_container.registerTests(); |
| 58 | 59 |
| 59 // Run all registered tests. | 60 // Run all registered tests. |
| 60 mocha.run(); | 61 mocha.run(); |
| 61 }); | 62 }); |
| 62 | 63 |
| 63 TEST_F('MediaRouterElementsBrowserTest', | 64 TEST_F('MediaRouterElementsBrowserTest', |
| 64 'MediaRouterElementsTestMediaRouterContainerFilter', | 65 'MediaRouterElementsTestMediaRouterContainerFilter', |
| (...skipping 27 matching lines...) Expand all Loading... |
| 92 | 93 |
| 93 TEST_F('MediaRouterElementsBrowserTest', | 94 TEST_F('MediaRouterElementsBrowserTest', |
| 94 'MediaRouterElementsTestMediaRouterRouteDetails', | 95 'MediaRouterElementsTestMediaRouterRouteDetails', |
| 95 function() { | 96 function() { |
| 96 // Register mocha tests for the route details. | 97 // Register mocha tests for the route details. |
| 97 route_details.registerTests(); | 98 route_details.registerTests(); |
| 98 | 99 |
| 99 // Run all registered tests. | 100 // Run all registered tests. |
| 100 mocha.run(); | 101 mocha.run(); |
| 101 }); | 102 }); |
| OLD | NEW |