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 21 matching lines...) Expand all Loading... |
32 __proto__: MaterialBookmarksBrowserTest.prototype, | 32 __proto__: MaterialBookmarksBrowserTest.prototype, |
33 | 33 |
34 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ | 34 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ |
35 'store_test.js', | 35 'store_test.js', |
36 ]), | 36 ]), |
37 }; | 37 }; |
38 | 38 |
39 TEST_F('MaterialBookmarksStoreTest', 'All', function() { | 39 TEST_F('MaterialBookmarksStoreTest', 'All', function() { |
40 mocha.run(); | 40 mocha.run(); |
41 }); | 41 }); |
| 42 |
| 43 function MaterialBookmarksSidebarTest() {} |
| 44 |
| 45 MaterialBookmarksSidebarTest.prototype = { |
| 46 __proto__: MaterialBookmarksBrowserTest.prototype, |
| 47 |
| 48 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ |
| 49 'sidebar_test.js', |
| 50 ]), |
| 51 }; |
| 52 |
| 53 TEST_F('MaterialBookmarksSidebarTest', 'All', function() { |
| 54 mocha.run(); |
| 55 }); |
| 56 |
| 57 function MaterialBookmarksItemTest() {} |
| 58 |
| 59 MaterialBookmarksItemTest.prototype = { |
| 60 __proto__: MaterialBookmarksBrowserTest.prototype, |
| 61 |
| 62 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ |
| 63 'item_test.js', |
| 64 ]), |
| 65 }; |
| 66 |
| 67 TEST_F('MaterialBookmarksItemTest', 'All', function() { |
| 68 mocha.run(); |
| 69 }); |
OLD | NEW |