| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 | 48 |
| 49 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ | 49 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ |
| 50 'sidebar_test.js', | 50 'sidebar_test.js', |
| 51 ]), | 51 ]), |
| 52 }; | 52 }; |
| 53 | 53 |
| 54 TEST_F('MaterialBookmarksSidebarTest', 'All', function() { | 54 TEST_F('MaterialBookmarksSidebarTest', 'All', function() { |
| 55 mocha.run(); | 55 mocha.run(); |
| 56 }); | 56 }); |
| 57 | 57 |
| 58 function MaterialBookmarksEditDialogTest() {} |
| 59 |
| 60 MaterialBookmarksEditDialogTest.prototype = { |
| 61 __proto__: MaterialBookmarksBrowserTest.prototype, |
| 62 |
| 63 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ |
| 64 'edit_dialog_test.js', |
| 65 ]), |
| 66 }; |
| 67 |
| 68 TEST_F('MaterialBookmarksEditDialogTest', 'All', function() { |
| 69 mocha.run(); |
| 70 }); |
| 71 |
| 58 function MaterialBookmarksItemTest() {} | 72 function MaterialBookmarksItemTest() {} |
| 59 | 73 |
| 60 MaterialBookmarksItemTest.prototype = { | 74 MaterialBookmarksItemTest.prototype = { |
| 61 __proto__: MaterialBookmarksBrowserTest.prototype, | 75 __proto__: MaterialBookmarksBrowserTest.prototype, |
| 62 | 76 |
| 63 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ | 77 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ |
| 64 'item_test.js', | 78 'item_test.js', |
| 65 ]), | 79 ]), |
| 66 }; | 80 }; |
| 67 | 81 |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 __proto__: MaterialBookmarksBrowserTest.prototype, | 149 __proto__: MaterialBookmarksBrowserTest.prototype, |
| 136 | 150 |
| 137 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ | 151 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ |
| 138 'store_client_test.js', | 152 'store_client_test.js', |
| 139 ]), | 153 ]), |
| 140 }; | 154 }; |
| 141 | 155 |
| 142 TEST_F('MaterialBookmarksStoreClientTest', 'All', function() { | 156 TEST_F('MaterialBookmarksStoreClientTest', 'All', function() { |
| 143 mocha.run(); | 157 mocha.run(); |
| 144 }); | 158 }); |
| OLD | NEW |