| 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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 __proto__: MaterialBookmarksBrowserTest.prototype, | 135 __proto__: MaterialBookmarksBrowserTest.prototype, |
| 136 | 136 |
| 137 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ | 137 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ |
| 138 'store_client_test.js', | 138 'store_client_test.js', |
| 139 ]), | 139 ]), |
| 140 }; | 140 }; |
| 141 | 141 |
| 142 TEST_F('MaterialBookmarksStoreClientTest', 'All', function() { | 142 TEST_F('MaterialBookmarksStoreClientTest', 'All', function() { |
| 143 mocha.run(); | 143 mocha.run(); |
| 144 }); | 144 }); |
| 145 |
| 146 function MaterialBookmarksUtilTest() {} |
| 147 |
| 148 MaterialBookmarksUtilTest.prototype = { |
| 149 __proto__: MaterialBookmarksBrowserTest.prototype, |
| 150 |
| 151 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ |
| 152 'util_test.js', |
| 153 ]), |
| 154 }; |
| 155 |
| 156 TEST_F('MaterialBookmarksUtilTest', 'All', function() { |
| 157 mocha.run(); |
| 158 }); |
| OLD | NEW |