| 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 'app_test.js', | 50 'app_test.js', |
| 51 ]), | 51 ]), |
| 52 }; | 52 }; |
| 53 | 53 |
| 54 TEST_F('MaterialBookmarksAppTest', 'All', function() { | 54 TEST_F('MaterialBookmarksAppTest', 'All', function() { |
| 55 mocha.run(); | 55 mocha.run(); |
| 56 }); | 56 }); |
| 57 | 57 |
| 58 function MaterialBookmarksCommandManagerTest() {} |
| 59 |
| 60 MaterialBookmarksCommandManagerTest.prototype = { |
| 61 __proto__: MaterialBookmarksBrowserTest.prototype, |
| 62 |
| 63 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ |
| 64 'command_manager_test.js', |
| 65 ]), |
| 66 }; |
| 67 |
| 68 TEST_F('MaterialBookmarksCommandManagerTest', 'All', function() { |
| 69 mocha.run(); |
| 70 }); |
| 71 |
| 58 function MaterialBookmarksDNDManagerTest() {} | 72 function MaterialBookmarksDNDManagerTest() {} |
| 59 | 73 |
| 60 MaterialBookmarksDNDManagerTest.prototype = { | 74 MaterialBookmarksDNDManagerTest.prototype = { |
| 61 __proto__: MaterialBookmarksBrowserTest.prototype, | 75 __proto__: MaterialBookmarksBrowserTest.prototype, |
| 62 | 76 |
| 63 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ | 77 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ |
| 64 'dnd_manager_test.js', | 78 'dnd_manager_test.js', |
| 65 ]), | 79 ]), |
| 66 }; | 80 }; |
| 67 | 81 |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 __proto__: MaterialBookmarksBrowserTest.prototype, | 187 __proto__: MaterialBookmarksBrowserTest.prototype, |
| 174 | 188 |
| 175 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ | 189 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ |
| 176 'util_test.js', | 190 'util_test.js', |
| 177 ]), | 191 ]), |
| 178 }; | 192 }; |
| 179 | 193 |
| 180 TEST_F('MaterialBookmarksUtilTest', 'All', function() { | 194 TEST_F('MaterialBookmarksUtilTest', 'All', function() { |
| 181 mocha.run(); | 195 mocha.run(); |
| 182 }); | 196 }); |
| OLD | NEW |