Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(468)

Side by Side Diff: chrome/test/data/webui/md_bookmarks/md_bookmarks_browsertest.js

Issue 2823053003: [MD Bookmarks] Remove the bookmarks-sidebar element. (Closed)
Patch Set: rebase, address comments Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 132
133 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ 133 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([
134 'router_test.js', 134 'router_test.js',
135 ]), 135 ]),
136 }; 136 };
137 137
138 TEST_F('MaterialBookmarksRouterTest', 'All', function() { 138 TEST_F('MaterialBookmarksRouterTest', 'All', function() {
139 mocha.run(); 139 mocha.run();
140 }); 140 });
141 141
142 function MaterialBookmarksSidebarTest() {} 142 function MaterialBookmarksFolderNodeTest() {}
143 143
144 MaterialBookmarksSidebarTest.prototype = { 144 MaterialBookmarksFolderNodeTest.prototype = {
145 __proto__: MaterialBookmarksBrowserTest.prototype, 145 __proto__: MaterialBookmarksBrowserTest.prototype,
146 146
147 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ 147 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([
148 'sidebar_test.js', 148 'folder_node_test.js',
149 ]), 149 ]),
150 }; 150 };
151 151
152 TEST_F('MaterialBookmarksSidebarTest', 'All', function() { 152 TEST_F('MaterialBookmarksFolderNodeTest', 'All', function() {
153 mocha.run(); 153 mocha.run();
154 }); 154 });
155 155
156 function MaterialBookmarksStoreClientTest() {} 156 function MaterialBookmarksStoreClientTest() {}
157 157
158 MaterialBookmarksStoreClientTest.prototype = { 158 MaterialBookmarksStoreClientTest.prototype = {
159 __proto__: MaterialBookmarksBrowserTest.prototype, 159 __proto__: MaterialBookmarksBrowserTest.prototype,
160 160
161 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ 161 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([
162 'store_client_test.js', 162 'store_client_test.js',
(...skipping 10 matching lines...) Expand all
173 __proto__: MaterialBookmarksBrowserTest.prototype, 173 __proto__: MaterialBookmarksBrowserTest.prototype,
174 174
175 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ 175 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([
176 'util_test.js', 176 'util_test.js',
177 ]), 177 ]),
178 }; 178 };
179 179
180 TEST_F('MaterialBookmarksUtilTest', 'All', function() { 180 TEST_F('MaterialBookmarksUtilTest', 'All', function() {
181 mocha.run(); 181 mocha.run();
182 }); 182 });
OLDNEW
« no previous file with comments | « chrome/test/data/webui/md_bookmarks/folder_node_test.js ('k') | chrome/test/data/webui/md_bookmarks/sidebar_test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698