| 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 | 75 |
| 76 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ | 76 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ |
| 77 'list_test.js', | 77 'list_test.js', |
| 78 ]), | 78 ]), |
| 79 }; | 79 }; |
| 80 | 80 |
| 81 TEST_F('MaterialBookmarksListTest', 'All', function() { | 81 TEST_F('MaterialBookmarksListTest', 'All', function() { |
| 82 mocha.run(); | 82 mocha.run(); |
| 83 }); | 83 }); |
| 84 | 84 |
| 85 function MaterialBookmarksReducersTest() {} |
| 86 |
| 87 MaterialBookmarksReducersTest.prototype = { |
| 88 __proto__: MaterialBookmarksBrowserTest.prototype, |
| 89 |
| 90 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ |
| 91 'reducers_test.js', |
| 92 ]), |
| 93 }; |
| 94 |
| 95 TEST_F('MaterialBookmarksReducersTest', 'All', function() { |
| 96 mocha.run(); |
| 97 }); |
| 98 |
| 85 function MaterialBookmarksStoreClientTest() {} | 99 function MaterialBookmarksStoreClientTest() {} |
| 86 | 100 |
| 87 MaterialBookmarksStoreClientTest.prototype = { | 101 MaterialBookmarksStoreClientTest.prototype = { |
| 88 __proto__: MaterialBookmarksBrowserTest.prototype, | 102 __proto__: MaterialBookmarksBrowserTest.prototype, |
| 89 | 103 |
| 90 // TODO(tsergeant): Remove special preload once Client is used in the page. | 104 // TODO(tsergeant): Remove special preload once Client is used in the page. |
| 91 browsePreload: 'chrome://bookmarks/store_client.html', | 105 browsePreload: 'chrome://bookmarks/store_client.html', |
| 92 | 106 |
| 93 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ | 107 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ |
| 94 'store_client_test.js', | 108 'store_client_test.js', |
| 95 ]), | 109 ]), |
| 96 }; | 110 }; |
| 97 | 111 |
| 98 TEST_F('MaterialBookmarksStoreClientTest', 'All', function() { | 112 TEST_F('MaterialBookmarksStoreClientTest', 'All', function() { |
| 99 mocha.run(); | 113 mocha.run(); |
| 100 }); | 114 }); |
| OLD | NEW |