| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 bookmarks page. | 6 * @fileoverview Test suite for the Material Design bookmarks page. |
| 7 */ | 7 */ |
| 8 var ROOT_PATH = '../../../../../'; | 8 var ROOT_PATH = '../../../../../'; |
| 9 | 9 |
| 10 GEN_INCLUDE( | 10 GEN_INCLUDE( |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 | 132 |
| 133 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ | 133 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ |
| 134 'router_test.js', | 134 'router_test.js', |
| 135 ]), | 135 ]), |
| 136 }; | 136 }; |
| 137 | 137 |
| 138 TEST_F('MaterialBookmarksRouterTest', 'All', function() { | 138 TEST_F('MaterialBookmarksRouterTest', 'All', function() { |
| 139 mocha.run(); | 139 mocha.run(); |
| 140 }); | 140 }); |
| 141 | 141 |
| 142 function MaterialBookmarksSidebarTest() {} | 142 function MaterialBookmarksFolderNodeTest() {} |
| 143 | 143 |
| 144 MaterialBookmarksSidebarTest.prototype = { | 144 MaterialBookmarksFolderNodeTest.prototype = { |
| 145 __proto__: MaterialBookmarksBrowserTest.prototype, | 145 __proto__: MaterialBookmarksBrowserTest.prototype, |
| 146 | 146 |
| 147 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ | 147 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ |
| 148 'sidebar_test.js', | 148 'folder_node_test.js', |
| 149 ]), | 149 ]), |
| 150 }; | 150 }; |
| 151 | 151 |
| 152 TEST_F('MaterialBookmarksSidebarTest', 'All', function() { | 152 TEST_F('MaterialBookmarksFolderNodeTest', 'All', function() { |
| 153 mocha.run(); | 153 mocha.run(); |
| 154 }); | 154 }); |
| 155 | 155 |
| 156 function MaterialBookmarksStoreClientTest() {} | 156 function MaterialBookmarksStoreClientTest() {} |
| 157 | 157 |
| 158 MaterialBookmarksStoreClientTest.prototype = { | 158 MaterialBookmarksStoreClientTest.prototype = { |
| 159 __proto__: MaterialBookmarksBrowserTest.prototype, | 159 __proto__: MaterialBookmarksBrowserTest.prototype, |
| 160 | 160 |
| 161 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ | 161 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ |
| 162 'store_client_test.js', | 162 'store_client_test.js', |
| (...skipping 10 matching lines...) Expand all Loading... |
| 173 __proto__: MaterialBookmarksBrowserTest.prototype, | 173 __proto__: MaterialBookmarksBrowserTest.prototype, |
| 174 | 174 |
| 175 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ | 175 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ |
| 176 'util_test.js', | 176 'util_test.js', |
| 177 ]), | 177 ]), |
| 178 }; | 178 }; |
| 179 | 179 |
| 180 TEST_F('MaterialBookmarksUtilTest', 'All', function() { | 180 TEST_F('MaterialBookmarksUtilTest', 'All', function() { |
| 181 mocha.run(); | 181 mocha.run(); |
| 182 }); | 182 }); |
| OLD | NEW |