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

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

Issue 2752223004: MD Bookmarks: Remove deleted nodes from state tree (Closed)
Patch Set: Rebase Created 3 years, 9 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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 __proto__: MaterialBookmarksBrowserTest.prototype, 135 __proto__: MaterialBookmarksBrowserTest.prototype,
136 136
137 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([ 137 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([
138 'store_client_test.js', 138 'store_client_test.js',
139 ]), 139 ]),
140 }; 140 };
141 141
142 TEST_F('MaterialBookmarksStoreClientTest', 'All', function() { 142 TEST_F('MaterialBookmarksStoreClientTest', 'All', function() {
143 mocha.run(); 143 mocha.run();
144 }); 144 });
145
146 function MaterialBookmarksUtilTest() {}
147
148 MaterialBookmarksUtilTest.prototype = {
149 __proto__: MaterialBookmarksBrowserTest.prototype,
150
151 extraLibraries: MaterialBookmarksBrowserTest.prototype.extraLibraries.concat([
152 'util_test.js',
153 ]),
154 };
155
156 TEST_F('MaterialBookmarksUtilTest', 'All', function() {
157 mocha.run();
158 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698