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

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

Issue 2946203002: MD Bookmarks: Batch updates to the UI when processing deletes and moves (Closed)
Patch Set: Batch in API listener Created 3 years, 5 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 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 199
200 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ 200 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([
201 'policy_test.js', 201 'policy_test.js',
202 ]), 202 ]),
203 }; 203 };
204 204
205 TEST_F('MaterialBookmarksPolicyTest', 'All', function() { 205 TEST_F('MaterialBookmarksPolicyTest', 'All', function() {
206 mocha.run(); 206 mocha.run();
207 }); 207 });
208 208
209 function MaterialBookmarksStoreClientTest() {} 209 function MaterialBookmarksStoreTest() {}
210 210
211 MaterialBookmarksStoreClientTest.prototype = { 211 MaterialBookmarksStoreTest.prototype = {
212 __proto__: MaterialBookmarksBrowserTest.prototype, 212 __proto__: MaterialBookmarksBrowserTest.prototype,
213 213
214 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ 214 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([
215 'store_client_test.js', 215 'store_test.js',
216 ]), 216 ]),
217 }; 217 };
218 218
219 TEST_F('MaterialBookmarksStoreClientTest', 'All', function() { 219 TEST_F('MaterialBookmarksStoreTest', 'All', function() {
220 mocha.run(); 220 mocha.run();
221 }); 221 });
222 222
223 function MaterialBookmarksToolbarTest() {} 223 function MaterialBookmarksToolbarTest() {}
224 224
225 MaterialBookmarksToolbarTest.prototype = { 225 MaterialBookmarksToolbarTest.prototype = {
226 __proto__: MaterialBookmarksBrowserTest.prototype, 226 __proto__: MaterialBookmarksBrowserTest.prototype,
227 227
228 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ 228 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([
229 'toolbar_test.js', 229 'toolbar_test.js',
(...skipping 10 matching lines...) Expand all
240 __proto__: MaterialBookmarksBrowserTest.prototype, 240 __proto__: MaterialBookmarksBrowserTest.prototype,
241 241
242 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ 242 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([
243 'util_test.js', 243 'util_test.js',
244 ]), 244 ]),
245 }; 245 };
246 246
247 TEST_F('MaterialBookmarksUtilTest', 'All', function() { 247 TEST_F('MaterialBookmarksUtilTest', 'All', function() {
248 mocha.run(); 248 mocha.run();
249 }); 249 });
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_bookmarks/store.js ('k') | chrome/test/data/webui/md_bookmarks/store_client_test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698