| 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 /** | 5 /** |
| 6 * @fileoverview Test suite for the Material Design history page. | 6 * @fileoverview Test suite for the Material Design history page. |
| 7 */ | 7 */ |
| 8 | 8 |
| 9 var ROOT_PATH = '../../../../../'; | 9 var ROOT_PATH = '../../../../../'; |
| 10 | 10 |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 TEST_F('MaterialHistoryBrowserTest', 'HistoryGroupedListTest', function() { | 79 TEST_F('MaterialHistoryBrowserTest', 'HistoryGroupedListTest', function() { |
| 80 md_history.history_grouped_list_test.registerTests(); | 80 md_history.history_grouped_list_test.registerTests(); |
| 81 mocha.run(); | 81 mocha.run(); |
| 82 }); | 82 }); |
| 83 | 83 |
| 84 TEST_F('MaterialHistoryBrowserTest', 'HistoryItemTest', function() { | 84 TEST_F('MaterialHistoryBrowserTest', 'HistoryItemTest', function() { |
| 85 md_history.history_item_test.registerTests(); | 85 md_history.history_item_test.registerTests(); |
| 86 mocha.run(); | 86 mocha.run(); |
| 87 }); | 87 }); |
| 88 | 88 |
| 89 TEST_F('MaterialHistoryBrowserTest', 'HistoryListTest', function() { | 89 // Flaky on chromeos, http://crbug.com/640862 |
| 90 TEST_F('MaterialHistoryBrowserTest', 'DISABLED_HistoryListTest', function() { |
| 90 md_history.history_list_test.registerTests(); | 91 md_history.history_list_test.registerTests(); |
| 91 mocha.run(); | 92 mocha.run(); |
| 92 }); | 93 }); |
| 93 | 94 |
| 94 TEST_F('MaterialHistoryBrowserTest', 'Metrics', function() { | 95 TEST_F('MaterialHistoryBrowserTest', 'Metrics', function() { |
| 95 md_history.history_metrics_test.registerTests(); | 96 md_history.history_metrics_test.registerTests(); |
| 96 mocha.run(); | 97 mocha.run(); |
| 97 }); | 98 }); |
| 98 | 99 |
| 99 TEST_F('MaterialHistoryBrowserTest', 'HistoryToolbarTest', function() { | 100 TEST_F('MaterialHistoryBrowserTest', 'HistoryToolbarTest', function() { |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 }); | 166 }); |
| 166 }); | 167 }); |
| 167 }, | 168 }, |
| 168 }; | 169 }; |
| 169 | 170 |
| 170 TEST_F('MaterialHistoryWithQueryParamTest', 'RoutingTestWithQueryParam', | 171 TEST_F('MaterialHistoryWithQueryParamTest', 'RoutingTestWithQueryParam', |
| 171 function() { | 172 function() { |
| 172 md_history.history_routing_test_with_query_param.registerTests(); | 173 md_history.history_routing_test_with_query_param.registerTests(); |
| 173 mocha.run(); | 174 mocha.run(); |
| 174 }); | 175 }); |
| OLD | NEW |