| 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 10 matching lines...) Expand all Loading... |
| 21 browsePreload: 'chrome://bookmarks', | 21 browsePreload: 'chrome://bookmarks', |
| 22 | 22 |
| 23 commandLineSwitches: [{switchName: 'enable-features', | 23 commandLineSwitches: [{switchName: 'enable-features', |
| 24 switchValue: 'MaterialDesignBookmarks'}], | 24 switchValue: 'MaterialDesignBookmarks'}], |
| 25 | 25 |
| 26 typedefCppFixture: 'MdBookmarksBrowserTest', | 26 typedefCppFixture: 'MdBookmarksBrowserTest', |
| 27 | 27 |
| 28 extraLibraries: PolymerTest.getLibraries(ROOT_PATH).concat([ | 28 extraLibraries: PolymerTest.getLibraries(ROOT_PATH).concat([ |
| 29 'test_command_manager.js', | 29 'test_command_manager.js', |
| 30 'test_store.js', | 30 'test_store.js', |
| 31 'test_timer_proxy.js', |
| 31 'test_util.js', | 32 'test_util.js', |
| 32 ]), | 33 ]), |
| 33 }; | 34 }; |
| 34 | 35 |
| 35 function MaterialBookmarksActionsTest() {} | 36 function MaterialBookmarksActionsTest() {} |
| 36 | 37 |
| 37 MaterialBookmarksActionsTest.prototype = { | 38 MaterialBookmarksActionsTest.prototype = { |
| 38 __proto__: MaterialBookmarksBrowserTest.prototype, | 39 __proto__: MaterialBookmarksBrowserTest.prototype, |
| 39 | 40 |
| 40 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ | 41 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 __proto__: MaterialBookmarksBrowserTest.prototype, | 240 __proto__: MaterialBookmarksBrowserTest.prototype, |
| 240 | 241 |
| 241 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ | 242 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ |
| 242 'util_test.js', | 243 'util_test.js', |
| 243 ]), | 244 ]), |
| 244 }; | 245 }; |
| 245 | 246 |
| 246 TEST_F('MaterialBookmarksUtilTest', 'All', function() { | 247 TEST_F('MaterialBookmarksUtilTest', 'All', function() { |
| 247 mocha.run(); | 248 mocha.run(); |
| 248 }); | 249 }); |
| OLD | NEW |