| 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 // Flaky on chromeos, http://crbug.com/640862 | 89 TEST_F('MaterialHistoryBrowserTest', 'HistoryListTest', function() { |
| 90 TEST_F('MaterialHistoryBrowserTest', 'DISABLED_HistoryListTest', function() { | |
| 91 md_history.history_list_test.registerTests(); | 90 md_history.history_list_test.registerTests(); |
| 92 mocha.run(); | 91 mocha.run(); |
| 93 }); | 92 }); |
| 94 | 93 |
| 95 TEST_F('MaterialHistoryBrowserTest', 'Metrics', function() { | 94 TEST_F('MaterialHistoryBrowserTest', 'Metrics', function() { |
| 96 md_history.history_metrics_test.registerTests(); | 95 md_history.history_metrics_test.registerTests(); |
| 97 mocha.run(); | 96 mocha.run(); |
| 98 }); | 97 }); |
| 99 | 98 |
| 100 TEST_F('MaterialHistoryBrowserTest', 'HistoryToolbarTest', function() { | 99 TEST_F('MaterialHistoryBrowserTest', 'HistoryToolbarTest', function() { |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 }); | 165 }); |
| 167 }); | 166 }); |
| 168 }, | 167 }, |
| 169 }; | 168 }; |
| 170 | 169 |
| 171 TEST_F('MaterialHistoryWithQueryParamTest', 'RoutingTestWithQueryParam', | 170 TEST_F('MaterialHistoryWithQueryParamTest', 'RoutingTestWithQueryParam', |
| 172 function() { | 171 function() { |
| 173 md_history.history_routing_test_with_query_param.registerTests(); | 172 md_history.history_routing_test_with_query_param.registerTests(); |
| 174 mocha.run(); | 173 mocha.run(); |
| 175 }); | 174 }); |
| OLD | NEW |