| 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 23 matching lines...) Expand all Loading... |
| 34 | 34 |
| 35 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ | 35 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ |
| 36 'app_test.js', | 36 'app_test.js', |
| 37 ]), | 37 ]), |
| 38 }; | 38 }; |
| 39 | 39 |
| 40 TEST_F('MaterialBookmarksAppTest', 'All', function() { | 40 TEST_F('MaterialBookmarksAppTest', 'All', function() { |
| 41 mocha.run(); | 41 mocha.run(); |
| 42 }); | 42 }); |
| 43 | 43 |
| 44 function MaterialBookmarksComplexActionsTest() {} |
| 45 |
| 46 MaterialBookmarksComplexActionsTest.prototype = { |
| 47 __proto__: MaterialBookmarksBrowserTest.prototype, |
| 48 |
| 49 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ |
| 50 'complex_actions_test.js', |
| 51 ]), |
| 52 }; |
| 53 |
| 54 TEST_F('MaterialBookmarksComplexActionsTest', 'All', function() { |
| 55 mocha.run(); |
| 56 }); |
| 57 |
| 44 function MaterialBookmarksDNDManagerTest() {} | 58 function MaterialBookmarksDNDManagerTest() {} |
| 45 | 59 |
| 46 MaterialBookmarksDNDManagerTest.prototype = { | 60 MaterialBookmarksDNDManagerTest.prototype = { |
| 47 __proto__: MaterialBookmarksBrowserTest.prototype, | 61 __proto__: MaterialBookmarksBrowserTest.prototype, |
| 48 | 62 |
| 49 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ | 63 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ |
| 50 'dnd_manager_test.js', | 64 'dnd_manager_test.js', |
| 51 ]), | 65 ]), |
| 52 }; | 66 }; |
| 53 | 67 |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 __proto__: MaterialBookmarksBrowserTest.prototype, | 191 __proto__: MaterialBookmarksBrowserTest.prototype, |
| 178 | 192 |
| 179 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ | 193 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ |
| 180 'util_test.js', | 194 'util_test.js', |
| 181 ]), | 195 ]), |
| 182 }; | 196 }; |
| 183 | 197 |
| 184 TEST_F('MaterialBookmarksUtilTest', 'All', function() { | 198 TEST_F('MaterialBookmarksUtilTest', 'All', function() { |
| 185 mocha.run(); | 199 mocha.run(); |
| 186 }); | 200 }); |
| OLD | NEW |