| 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 TEST_F('MaterialHistoryBrowserTest', 'HistoryListTest', function() { | 77 TEST_F('MaterialHistoryBrowserTest', 'HistoryListTest', function() { |
| 78 md_history.history_list_test.registerTests(); | 78 md_history.history_list_test.registerTests(); |
| 79 mocha.run(); | 79 mocha.run(); |
| 80 }); | 80 }); |
| 81 | 81 |
| 82 TEST_F('MaterialHistoryBrowserTest', 'HistoryToolbarTest', function() { | 82 TEST_F('MaterialHistoryBrowserTest', 'HistoryToolbarTest', function() { |
| 83 md_history.history_toolbar_test.registerTests(); | 83 md_history.history_toolbar_test.registerTests(); |
| 84 mocha.run(); | 84 mocha.run(); |
| 85 }); | 85 }); |
| 86 | 86 |
| 87 TEST_F('MaterialHistoryBrowserTest', 'HistoryToolbarFocusTest', function() { |
| 88 md_history.history_toolbar_focus_test.registerTests(); |
| 89 mocha.run(); |
| 90 }); |
| 91 |
| 87 TEST_F('MaterialHistoryBrowserTest', 'HistoryOverflowMenuTest', function() { | 92 TEST_F('MaterialHistoryBrowserTest', 'HistoryOverflowMenuTest', function() { |
| 88 md_history.history_overflow_menu_test.registerTests(); | 93 md_history.history_overflow_menu_test.registerTests(); |
| 89 mocha.run(); | 94 mocha.run(); |
| 90 }); | 95 }); |
| 91 | 96 |
| 92 TEST_F('MaterialHistoryBrowserTest', 'LazyRenderTest', function() { | 97 TEST_F('MaterialHistoryBrowserTest', 'LazyRenderTest', function() { |
| 93 md_history.lazy_render_test.registerTests(); | 98 md_history.lazy_render_test.registerTests(); |
| 94 mocha.run(); | 99 mocha.run(); |
| 95 }); | 100 }); |
| 96 | 101 |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 return waitForAppUpgrade(); | 152 return waitForAppUpgrade(); |
| 148 }); | 153 }); |
| 149 }, | 154 }, |
| 150 }; | 155 }; |
| 151 | 156 |
| 152 TEST_F('MaterialHistoryWithQueryParamTest', 'RoutingTestWithQueryParam', | 157 TEST_F('MaterialHistoryWithQueryParamTest', 'RoutingTestWithQueryParam', |
| 153 function() { | 158 function() { |
| 154 md_history.history_routing_test_with_query_param.registerTests(); | 159 md_history.history_routing_test_with_query_param.registerTests(); |
| 155 mocha.run(); | 160 mocha.run(); |
| 156 }); | 161 }); |
| OLD | NEW |