| 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 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 | 198 |
| 199 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ | 199 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ |
| 200 'policy_test.js', | 200 'policy_test.js', |
| 201 ]), | 201 ]), |
| 202 }; | 202 }; |
| 203 | 203 |
| 204 TEST_F('MaterialBookmarksPolicyTest', 'All', function() { | 204 TEST_F('MaterialBookmarksPolicyTest', 'All', function() { |
| 205 mocha.run(); | 205 mocha.run(); |
| 206 }); | 206 }); |
| 207 | 207 |
| 208 function MaterialBookmarksStoreClientTest() {} | 208 function MaterialBookmarksStoreTest() {} |
| 209 | 209 |
| 210 MaterialBookmarksStoreClientTest.prototype = { | 210 MaterialBookmarksStoreTest.prototype = { |
| 211 __proto__: MaterialBookmarksBrowserTest.prototype, | 211 __proto__: MaterialBookmarksBrowserTest.prototype, |
| 212 | 212 |
| 213 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ | 213 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ |
| 214 'store_client_test.js', | 214 'store_test.js', |
| 215 ]), | 215 ]), |
| 216 }; | 216 }; |
| 217 | 217 |
| 218 TEST_F('MaterialBookmarksStoreClientTest', 'All', function() { | 218 TEST_F('MaterialBookmarksStoreTest', 'All', function() { |
| 219 mocha.run(); | 219 mocha.run(); |
| 220 }); | 220 }); |
| 221 | 221 |
| 222 function MaterialBookmarksToolbarTest() {} | 222 function MaterialBookmarksToolbarTest() {} |
| 223 | 223 |
| 224 MaterialBookmarksToolbarTest.prototype = { | 224 MaterialBookmarksToolbarTest.prototype = { |
| 225 __proto__: MaterialBookmarksBrowserTest.prototype, | 225 __proto__: MaterialBookmarksBrowserTest.prototype, |
| 226 | 226 |
| 227 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ | 227 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ |
| 228 'toolbar_test.js', | 228 'toolbar_test.js', |
| (...skipping 10 matching lines...) Expand all Loading... |
| 239 __proto__: MaterialBookmarksBrowserTest.prototype, | 239 __proto__: MaterialBookmarksBrowserTest.prototype, |
| 240 | 240 |
| 241 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ | 241 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ |
| 242 'util_test.js', | 242 'util_test.js', |
| 243 ]), | 243 ]), |
| 244 }; | 244 }; |
| 245 | 245 |
| 246 TEST_F('MaterialBookmarksUtilTest', 'All', function() { | 246 TEST_F('MaterialBookmarksUtilTest', 'All', function() { |
| 247 mocha.run(); | 247 mocha.run(); |
| 248 }); | 248 }); |
| OLD | NEW |