| 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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 | 161 |
| 162 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ | 162 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ |
| 163 'folder_node_test.js', | 163 'folder_node_test.js', |
| 164 ]), | 164 ]), |
| 165 }; | 165 }; |
| 166 | 166 |
| 167 TEST_F('MaterialBookmarksFolderNodeTest', 'All', function() { | 167 TEST_F('MaterialBookmarksFolderNodeTest', 'All', function() { |
| 168 mocha.run(); | 168 mocha.run(); |
| 169 }); | 169 }); |
| 170 | 170 |
| 171 function MaterialBookmarksToastManagerTest() {} |
| 172 |
| 173 MaterialBookmarksToastManagerTest.prototype = { |
| 174 __proto__: MaterialBookmarksBrowserTest.prototype, |
| 175 |
| 176 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ |
| 177 'toast_manager_test.js', |
| 178 ]), |
| 179 }; |
| 180 |
| 181 TEST_F('MaterialBookmarksToastManagerTest', 'All', function() { |
| 182 mocha.run(); |
| 183 }); |
| 184 |
| 171 function MaterialBookmarksStoreClientTest() {} | 185 function MaterialBookmarksStoreClientTest() {} |
| 172 | 186 |
| 173 MaterialBookmarksStoreClientTest.prototype = { | 187 MaterialBookmarksStoreClientTest.prototype = { |
| 174 __proto__: MaterialBookmarksBrowserTest.prototype, | 188 __proto__: MaterialBookmarksBrowserTest.prototype, |
| 175 | 189 |
| 176 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ | 190 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ |
| 177 'store_client_test.js', | 191 'store_client_test.js', |
| 178 ]), | 192 ]), |
| 179 }; | 193 }; |
| 180 | 194 |
| (...skipping 21 matching lines...) Expand all Loading... |
| 202 __proto__: MaterialBookmarksBrowserTest.prototype, | 216 __proto__: MaterialBookmarksBrowserTest.prototype, |
| 203 | 217 |
| 204 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ | 218 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ |
| 205 'util_test.js', | 219 'util_test.js', |
| 206 ]), | 220 ]), |
| 207 }; | 221 }; |
| 208 | 222 |
| 209 TEST_F('MaterialBookmarksUtilTest', 'All', function() { | 223 TEST_F('MaterialBookmarksUtilTest', 'All', function() { |
| 210 mocha.run(); | 224 mocha.run(); |
| 211 }); | 225 }); |
| OLD | NEW |