| 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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 __proto__: MaterialBookmarksBrowserTest.prototype, | 163 __proto__: MaterialBookmarksBrowserTest.prototype, |
| 164 | 164 |
| 165 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ | 165 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ |
| 166 'store_client_test.js', | 166 'store_client_test.js', |
| 167 ]), | 167 ]), |
| 168 }; | 168 }; |
| 169 | 169 |
| 170 TEST_F('MaterialBookmarksStoreClientTest', 'All', function() { | 170 TEST_F('MaterialBookmarksStoreClientTest', 'All', function() { |
| 171 mocha.run(); | 171 mocha.run(); |
| 172 }); | 172 }); |
| 173 |
| 174 function MaterialBookmarksUtilTest() {} |
| 175 |
| 176 MaterialBookmarksUtilTest.prototype = { |
| 177 __proto__: MaterialBookmarksBrowserTest.prototype, |
| 178 |
| 179 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ |
| 180 'util_test.js', |
| 181 ]), |
| 182 }; |
| 183 |
| 184 TEST_F('MaterialBookmarksUtilTest', 'All', function() { |
| 185 mocha.run(); |
| 186 }); |
| OLD | NEW |